Skip to content

Commit

Permalink
reoder ui to fix hotkeys
Browse files Browse the repository at this point in the history
  • Loading branch information
Kl4rry committed Nov 17, 2024
1 parent 483a892 commit f7bc288
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -393,14 +393,6 @@ impl App {
ctx.set_cursor_icon(CursorIcon::Progress);
}

self.main_area(wgpu, ctx);

if wgpu.window.fullscreen().is_none() && !self.zen_mode {
self.menu_bar(wgpu, ctx);
self.bottom_bar(ctx);
self.gif_player_bar(ctx);
}

self.resize_ui(ctx);
self.preferences_ui(ctx);
self.help_ui(ctx);
Expand All @@ -409,6 +401,14 @@ impl App {
self.metadata_ui(ctx);
self.crop_ui(ctx);

self.main_area(wgpu, ctx);

if wgpu.window.fullscreen().is_none() && !self.zen_mode {
self.menu_bar(wgpu, ctx);
self.bottom_bar(ctx);
self.gif_player_bar(ctx);
}

self.dialog_manager.update(ctx, self.size, &mut self.enter);
}

Expand Down

0 comments on commit f7bc288

Please sign in to comment.