Mailinglist Archive: opensuse-bugs (15134 mails)
| < Previous | Next > |
[Bug 328048] updater-zypper-gui hangs on " checking for additional package updates"
- From: bugzilla_noreply@xxxxxxxxxx
- Date: Tue, 25 Sep 2007 15:34:45 -0600 (MDT)
- Message-id: <20070925213445.7C946245269@xxxxxxxxxxxxxxxxxxxxxx>
https://bugzilla.novell.com/show_bug.cgi?id=328048#c8
Federico Mena Quintero <federico@xxxxxxxxxx> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |federico@xxxxxxxxxx
--- Comment #8 from Federico Mena Quintero <federico@xxxxxxxxxx> 2007-09-25 15:34:44 MST ---
Updater-zypper-gui may keep on running if you close its status dialogs with
something other than the "OK" button --- the code has this pattern:
if (gtk_dialog_run (dialog) == GTK_RESPONSE_OK)
gtk_main_quit();
/* else remain in the main loop */
If the intention is to exit the program as soon as the dialog is closed,
regardless of *how* it is closed, then simply remove the "if" and do
gtk_main_quit() unconditionally.
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
Federico Mena Quintero <federico@xxxxxxxxxx> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |federico@xxxxxxxxxx
--- Comment #8 from Federico Mena Quintero <federico@xxxxxxxxxx> 2007-09-25 15:34:44 MST ---
Updater-zypper-gui may keep on running if you close its status dialogs with
something other than the "OK" button --- the code has this pattern:
if (gtk_dialog_run (dialog) == GTK_RESPONSE_OK)
gtk_main_quit();
/* else remain in the main loop */
If the intention is to exit the program as soon as the dialog is closed,
regardless of *how* it is closed, then simply remove the "if" and do
gtk_main_quit() unconditionally.
--
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
| < Previous | Next > |