Revert "Bug 794356 - Rulers always shown for subsequent image views"

This reverts commit ea48b9f31c.
Final revert of GTK+2 hack.
This commit is contained in:
Jehan 2018-05-02 01:27:53 +02:00 committed by Michael Natterer
parent e7e7f00528
commit 26710104ba
1 changed files with 3 additions and 12 deletions

View File

@ -466,18 +466,9 @@ gimp_image_window_constructed (GObject *object)
gtk_paned_pack1 (GTK_PANED (private->right_hpane), private->notebook,
TRUE, TRUE);
/* HACK: remove with GTK+ 3.x: there is no reason to
* connect_after() here except the HACK at the end of
* gimp_display_shell_canvas_realize().
*
* We need to make sure gimp_display_shell_appearance_update() is
* called after realize() so the ill-shown rulers are properly
* hidden again
*/
g_signal_connect_after (private->notebook, "switch-page",
G_CALLBACK (gimp_image_window_switch_page),
window);
g_signal_connect (private->notebook, "switch-page",
G_CALLBACK (gimp_image_window_switch_page),
window);
g_signal_connect (private->notebook, "page-removed",
G_CALLBACK (gimp_image_window_page_removed),
window);