set fullscreen background to black for gtk frontend

This commit is contained in:
sietschie 2019-12-11 14:18:51 +01:00
parent 7a3699aba6
commit 25f7469920
1 changed files with 5 additions and 0 deletions

View File

@ -899,6 +899,9 @@ static void ToggleFullscreen(GtkToggleAction *action)
config.window_fullscreen = gtk_toggle_action_get_active(action);
if (config.window_fullscreen)
{
GdkColor black = {0, 0, 0, 0};
gtk_widget_modify_bg(pDrawingArea, GTK_STATE_NORMAL, &black);
gtk_widget_hide(pMenuBar);
gtk_widget_hide(pToolBar);
gtk_widget_hide(pStatusBar);
@ -909,6 +912,8 @@ static void ToggleFullscreen(GtkToggleAction *action)
}
else
{
gtk_widget_modify_bg(pDrawingArea, GTK_STATE_NORMAL, NULL);
if (config.view_menu) {
gtk_widget_show(pMenuBar);
}