Skip to content

Commit

Permalink
include version info in settings window
Browse files Browse the repository at this point in the history
  • Loading branch information
justDeeevin committed Mar 26, 2024
1 parent 866e514 commit c46943d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/nuhxboard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ impl Application for NuhxBoard {
resizable: false,
size: iced::Size {
width: 420.0,
height: 255.0,
height: 300.0,
},
..Default::default()
});
Expand Down
1 change: 1 addition & 0 deletions src/ui/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,7 @@ impl NuhxBoard {
];

column![
text(format!("NuhxBoard v{}", env!("CARGO_PKG_VERSION"))).size(20),
checkbox(
"Automatically create a desktop entry if none exists",
self.settings.auto_desktop_entry
Expand Down

0 comments on commit c46943d

Please sign in to comment.