Skip to content

Commit

Permalink
Window geometry improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
lainsce committed Jan 29, 2024
1 parent 60ff5e1 commit d115e64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Application.vala
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ namespace Fusebox {
headerbar = new He.AppBar () {
show_back = false,
show_right_title_buttons = false,
width_request = 265
width_request = 305
};

var title_label = new Gtk.Label (_("Settings"));
Expand Down Expand Up @@ -255,8 +255,8 @@ namespace Fusebox {
add_window (main_window);
main_window.present ();
main_window.set_size_request (360, 360);
main_window.default_height = 711;
main_window.default_width = 800;
main_window.default_height = 800;
main_window.default_width = 900;
// Actions
actions = new SimpleActionGroup ();
actions.add_action_entries (ACTION_ENTRIES, this);
Expand Down

0 comments on commit d115e64

Please sign in to comment.