# # # patch "lib/perl/AdvancedFind.pm" # from [a92539ead0913127587e04bf47eaa93c502c13b9] # to [007f51112d0a3c7ddd3d83296e4c20ccc83d787f] # # patch "lib/perl/Annotate.pm" # from [5f1054ba65b5fcc3f5567a65d69bf5140b150192] # to [1e20648ca38bb4ac491c9d66de06d2575b7219c1] # # patch "lib/perl/ChangeLog.pm" # from [ecdacf3b46e0f5adeecef7a1a5c156ca61e54f9b] # to [7f686b86117a13765a84b848a4214128a1e31619] # # patch "lib/perl/FindFiles.pm" # from [a3598006cda47c307e8854739da83002460057d6] # to [4cf0371dd9563a9713f54ea71982b2874be7f842] # # patch "lib/perl/FindText.pm" # from [be9140c92dbca6d16cef6a661ac5aba4034e33b1] # to [e18da3120fb9b9a586fd0bde9e3a14cadf5e2771] # # patch "lib/perl/History.pm" # from [10a62eb5b64d71c54d78184a86ddfde158d7f888] # to [9cbe1ed307bcf1199202b66d91d90de3f806ec8d] # # patch "lib/perl/Preferences.pm" # from [e6965503f418a3e446d43d79af1500449f843089] # to [9338c94dbc2d062b841e10bba76b5825587ed6cc] # # patch "lib/ui/mtn-browse.glade" # from [c7dfda0093203de9bb808675e307578d0adaf494] # to [a6bd56cb5f32c93dcc636bc6aa1bbf9cd86cd8bb] # # patch "mtn-browse" # from [8f65af008b4621935e275303e9ecee8ac3d03cd0] # to [8b69c0e2912d4e5221192c0fe1e9acd760756d28] # ============================================================ --- lib/perl/AdvancedFind.pm a92539ead0913127587e04bf47eaa93c502c13b9 +++ lib/perl/AdvancedFind.pm 007f51112d0a3c7ddd3d83296e4c20ccc83d787f @@ -553,6 +553,7 @@ sub get_advanced_find_window($) # Flag to stop recursive calling of callbacks. $instance->{in_cb} = 0; + local $instance->{in_cb} = 1; # Connect Glade registered signal handlers. @@ -711,7 +712,8 @@ sub get_advanced_find_window($) $instance->{window}->set_transient_for($browser->{window}); - local $instance->{in_cb} = 1; + # Display the window. + $instance->{window}->show_all(); $instance->{window}->present(); ============================================================ --- lib/perl/Annotate.pm 5f1054ba65b5fcc3f5567a65d69bf5140b150192 +++ lib/perl/Annotate.pm 1e20648ca38bb4ac491c9d66de06d2575b7219c1 @@ -708,6 +708,7 @@ sub get_annotation_window() # Flag to stop recursive calling of callbacks. $instance->{in_cb} = 0; + local $instance->{in_cb} = 1; # Connect Glade registered signal handlers. ============================================================ --- lib/perl/ChangeLog.pm ecdacf3b46e0f5adeecef7a1a5c156ca61e54f9b +++ lib/perl/ChangeLog.pm 7f686b86117a13765a84b848a4214128a1e31619 @@ -392,6 +392,7 @@ sub get_change_log_window() # Flag to stop recursive calling of callbacks. $instance->{in_cb} = 0; + local $instance->{in_cb} = 1; # Connect Glade registered signal handlers. @@ -439,6 +440,7 @@ sub get_change_log_window() else { $instance->{in_cb} = 0; + local $instance->{in_cb} = 1; ($width, $height) = $instance->{window}->get_default_size(); $instance->{window}->resize($width, $height); } ============================================================ --- lib/perl/FindFiles.pm a3598006cda47c307e8854739da83002460057d6 +++ lib/perl/FindFiles.pm 4cf0371dd9563a9713f54ea71982b2874be7f842 @@ -848,6 +848,7 @@ sub get_find_files_window() # Flag to stop recursive calling of callbacks. $instance->{in_cb} = 0; + local $instance->{in_cb} = 1; # Connect Glade registered signal handlers. ============================================================ --- lib/perl/FindText.pm be9140c92dbca6d16cef6a661ac5aba4034e33b1 +++ lib/perl/FindText.pm e18da3120fb9b9a586fd0bde9e3a14cadf5e2771 @@ -682,6 +682,7 @@ sub get_find_text_window($$) # Flag to stop recursive calling of callbacks. $instance->{in_cb} = 0; + local $instance->{in_cb} = 1; # Connect Glade registered signal handlers. @@ -739,6 +740,7 @@ sub get_find_text_window($$) { $new = 0; $instance->{in_cb} = 0; + local $instance->{in_cb} = 1; $instance->{main_vbox}->set_sensitive(TRUE); } ============================================================ --- lib/perl/History.pm 10a62eb5b64d71c54d78184a86ddfde158d7f888 +++ lib/perl/History.pm 9cbe1ed307bcf1199202b66d91d90de3f806ec8d @@ -1509,6 +1509,7 @@ sub get_history_window() # Flag to stop recursive calling of callbacks. $instance->{in_cb} = 0; + local $instance->{in_cb} = 1; # Connect Glade registered signal handlers. @@ -1756,6 +1757,7 @@ sub get_revision_comparison_window() # Flag to stop recursive calling of callbacks. $instance->{in_cb} = 0; + local $instance->{in_cb} = 1; # Connect Glade registered signal handlers. ============================================================ --- lib/perl/Preferences.pm e6965503f418a3e446d43d79af1500449f843089 +++ lib/perl/Preferences.pm 9338c94dbc2d062b841e10bba76b5825587ed6cc @@ -1009,6 +1009,7 @@ sub get_preferences_window($$) # Flag to stop recursive calling of callbacks. $instance->{in_cb} = 0; + local $instance->{in_cb} = 1; # Connect Glade registered signal handlers. @@ -1174,7 +1175,8 @@ sub get_preferences_window($$) $instance->{preferences} = $preferences; load_preferences_into_gui($instance); - local $instance->{in_cb} = 1; + # Display the window. + $instance->{window}->show_all(); $instance->{window}->present(); ============================================================ --- lib/ui/mtn-browse.glade c7dfda0093203de9bb808675e307578d0adaf494 +++ lib/ui/mtn-browse.glade a6bd56cb5f32c93dcc636bc6aa1bbf9cd86cd8bb @@ -5224,7 +5224,7 @@ the tags to be order aphabeticallyGTK_UPDATE_ALWAYS False False - 0 0 10000 1 10 10 + 0 0 10000 1 10 0 2 @@ -5246,7 +5246,7 @@ the tags to be order aphabeticallyGTK_UPDATE_ALWAYS False False - 0 0 10000 1 10 10 + 0 0 10000 1 10 0 2 @@ -5336,7 +5336,7 @@ history stored in ComboBox menusGTK_UPDATE_ALWAYS False False - 20 0 100 1 10 10 + 20 0 100 1 10 0 2 @@ -8312,7 +8312,7 @@ by the specified user GTK_UPDATE_ALWAYS False False - 1 1 1000 1 10 10 + 1 1 1000 1 10 0 2 @@ -8334,7 +8334,7 @@ by the specified user GTK_UPDATE_ALWAYS False False - 1 1 10000 1 10 10 + 1 1 10000 1 10 0 3 ============================================================ --- mtn-browse 8f65af008b4621935e275303e9ecee8ac3d03cd0 +++ mtn-browse 8b69c0e2912d4e5221192c0fe1e9acd760756d28 @@ -1609,6 +1609,7 @@ sub get_browser_window(;$$$$$) # Flag to stop recursive calling of callbacks. $browser->{in_cb} = 0; + local $browser->{in_cb} = 1; # Connect Glade registered signal handlers. @@ -1780,7 +1781,8 @@ sub get_browser_window(;$$$$$) $browser->{file_view_sv}->set_show_line_numbers(TRUE); } - local $browser->{in_cb} = 1; + # Display the window. + $browser->{window}->show_all(); $browser->{window}->present();