Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
d925059ef4 |
|||
|
65c93960d4 |
1 changed files with 3 additions and 3 deletions
|
|
@ -150,7 +150,7 @@ impl State {
|
||||||
"main",
|
"main",
|
||||||
widget::operation::AbsoluteOffset {
|
widget::operation::AbsoluteOffset {
|
||||||
x: 0.,
|
x: 0.,
|
||||||
y: if modifiers.shift() { 100. } else { 30. },
|
y: if modifiers.shift() { 500. } else { 100. },
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
@ -162,7 +162,7 @@ impl State {
|
||||||
"main",
|
"main",
|
||||||
widget::operation::AbsoluteOffset {
|
widget::operation::AbsoluteOffset {
|
||||||
x: 0.,
|
x: 0.,
|
||||||
y: if modifiers.shift() { -100. } else { -30. },
|
y: if modifiers.shift() { -500. } else { -100. },
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
@ -265,7 +265,7 @@ pub fn run() -> Result<(), impl std::error::Error> {
|
||||||
.theme(theme::Theme::custom(
|
.theme(theme::Theme::custom(
|
||||||
"high-contrast-dark",
|
"high-contrast-dark",
|
||||||
theme::Palette {
|
theme::Palette {
|
||||||
background: Color::from_rgb8(10, 10, 10),
|
background: Color::BLACK,
|
||||||
text: Color::WHITE,
|
text: Color::WHITE,
|
||||||
..theme::Palette::DARK
|
..theme::Palette::DARK
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue