Skip to content

Commit

Permalink
Fix visual bug in control app, fixes #24
Browse files Browse the repository at this point in the history
  • Loading branch information
MolotovCherry committed Oct 22, 2023
1 parent 8896c2e commit 561fd02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtual-display-driver-control/src/ui/main_window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl<'a> MainWindow<'a> {
// compare to this one
let height = ui.min_rect().height();
rect.set_top(rect.top() + height + 10.0);
rect.set_bottom(rect.bottom() + (height / 2.0) + 6.0);
rect.set_bottom(rect.bottom() + height - 1.5);
rect.set_left(rect.left() - 2.0);
rect.set_right(rect.right() + 2.0);

Expand Down

0 comments on commit 561fd02

Please sign in to comment.