Skip to content

Commit

Permalink
fix: #115 (added Overflow::Hidden to overlay)
Browse files Browse the repository at this point in the history
Signed-off-by: Enrico Stemmer <[email protected]>
  • Loading branch information
H3rmt committed Jan 18, 2025
1 parent 1cd1633 commit 6a38fc2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/daemon/gui/launcher/launcher.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.launcher {
min-width: 550px;
min-width: 600px;
font-size: 20px;
}

Expand Down
1 change: 1 addition & 0 deletions src/daemon/gui/windows/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ pub fn init_windows(

let client_overlay = Overlay::builder()
.css_classes(vec!["client", "background"])
.overflow(Overflow::Hidden)
.child(&client_frame)
.width_request(scale(client.width, size_factor))
.height_request(scale(client.height, size_factor))
Expand Down

0 comments on commit 6a38fc2

Please sign in to comment.