Skip to content

Commit

Permalink
Fix compilation error on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rcaelers committed Jan 28, 2024
1 parent 9076ace commit 009b670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/app/toolkits/gtkmm/GtkUtil.cc
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ GtkUtil::set_always_on_top(Gtk::Window *window, bool ontop)
#if defined(PLATFORM_OS_WINDOWS)

HWND hwnd = (HWND)GDK_WINDOW_HWND(gtk_widget_get_window(GTK_WIDGET(window->gobj())));
WindowsCompat::SetWindowOnTop(hwnd, on_top);
WindowsCompat::SetWindowOnTop(hwnd, ontop);

#else

Expand Down

0 comments on commit 009b670

Please sign in to comment.