@@ -1216,13 +1216,17 @@ void gui_init(dt_view_t *self)
12161216 lib -> preview = dt_culling_new (DT_CULLING_MODE_PREVIEW );
12171217
12181218 // add culling and preview to the center widget
1219- gtk_overlay_add_overlay (GTK_OVERLAY (dt_ui_center_base (darktable .gui -> ui )), lib -> culling -> widget );
1220- gtk_overlay_add_overlay (GTK_OVERLAY (dt_ui_center_base (darktable .gui -> ui )), lib -> preview -> widget );
1219+ gtk_overlay_add_overlay (GTK_OVERLAY (dt_ui_center_base (darktable .gui -> ui )),
1220+ lib -> culling -> widget );
1221+ gtk_overlay_add_overlay (GTK_OVERLAY (dt_ui_center_base (darktable .gui -> ui )),
1222+ lib -> preview -> widget );
12211223 gtk_widget_set_no_show_all (lib -> culling -> widget , TRUE);
12221224 gtk_widget_set_no_show_all (lib -> preview -> widget , TRUE);
12231225 // place behind toast/log messages
1224- gtk_overlay_reorder_overlay (GTK_OVERLAY (dt_ui_center_base (darktable .gui -> ui )), lib -> culling -> widget , 1 );
1225- gtk_overlay_reorder_overlay (GTK_OVERLAY (dt_ui_center_base (darktable .gui -> ui )), lib -> preview -> widget , 1 );
1226+ gtk_overlay_reorder_overlay (GTK_OVERLAY (dt_ui_center_base (darktable .gui -> ui )),
1227+ lib -> culling -> widget , 1 );
1228+ gtk_overlay_reorder_overlay (GTK_OVERLAY (dt_ui_center_base (darktable .gui -> ui )),
1229+ lib -> preview -> widget , 1 );
12261230
12271231 /* add the global focus peaking button in toolbox */
12281232 dt_view_manager_module_toolbox_add (darktable .view_manager , darktable .gui -> focus_peaking_button ,
@@ -1237,7 +1241,8 @@ void gui_init(dt_view_t *self)
12371241 lib -> profile_floating_window = gtk_popover_new (profile_button );
12381242
12391243 g_object_set (G_OBJECT (lib -> profile_floating_window ), "transitions-enabled" , FALSE, NULL );
1240- g_signal_connect_swapped (G_OBJECT (profile_button ), "button-press-event" , G_CALLBACK (gtk_widget_show_all ), lib -> profile_floating_window );
1244+ g_signal_connect_swapped (G_OBJECT (profile_button ), "button-press-event" ,
1245+ G_CALLBACK (gtk_widget_show_all ), lib -> profile_floating_window );
12411246
12421247 GtkWidget * vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL , 0 );
12431248
0 commit comments