Make manual reposition after unfullscreen Windows only
This commit is contained in:
parent
267ac71d4f
commit
36911710fd
|
@ -899,11 +899,13 @@ menu_fullscreen_toggle (GtkWidget *wid, gpointer ud)
|
|||
{
|
||||
gtk_window_unfullscreen (GTK_WINDOW(parent_window));
|
||||
|
||||
/* At least on Windows we need to manually reposition the window */
|
||||
#ifdef WIN32
|
||||
/* other window managers seem to handle this */
|
||||
gtk_window_resize (GTK_WINDOW(parent_window),
|
||||
prefs.hex_gui_win_width, prefs.hex_gui_win_height);
|
||||
gtk_window_move (GTK_WINDOW(parent_window),
|
||||
prefs.hex_gui_win_left, prefs.hex_gui_win_top);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue