Merge lp:~evfool/software-center/lp835005 into lp:software-center

Proposed by Robert Roth
Status: Merged
Merge reported by: Robert Roth
Merged at revision: not available
Proposed branch: lp:~evfool/software-center/lp835005
Merge into: lp:software-center
Diff against target: 18 lines (+0/-2)
1 file modified
softwarecenter/ui/gtk3/app.py (+0/-2)
To merge this branch: bzr merge lp:~evfool/software-center/lp835005
Reviewer Review Type Date Requested Status
Gary Lasker (community) Approve
Review via email: mp+105356@code.launchpad.net

Description of the change

This branch does not make software center insensitive until software sources is closed, as requested in bug #835005.

To post a comment you must log in.
Revision history for this message
Gary Lasker (gary-lasker) wrote :

Does the trick perfectly! Thank you, Robert!

review: Approve
Revision history for this message
Gary Lasker (gary-lasker) wrote :

Merged into the lp:software-center/5.2 branch.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'softwarecenter/ui/gtk3/app.py'
2--- softwarecenter/ui/gtk3/app.py 2012-05-04 00:39:07 +0000
3+++ softwarecenter/ui/gtk3/app.py 2012-05-10 17:18:19 +0000
4@@ -965,7 +965,6 @@
5 self.active_pane.searchentry.select_region(0, -1)
6
7 def on_menuitem_software_sources_activate(self, widget):
8- self.window_main.set_sensitive(False)
9 # run software-properties-gtk
10 window = self.window_main.get_window()
11 if hasattr(window, 'xid'):
12@@ -988,7 +987,6 @@
13 # A return code of 1 means that the sources have changed
14 if ret == 1:
15 self.run_update_cache()
16- self.window_main.set_sensitive(True)
17 # Stop monitoring
18 return False
19