[#2731] [GTKUI] Fix potential AttributeError in is_on_active_workspace

* Without being able to replicate adding the forced updated is the likely fix for 'win'
being None but also add test in case it's not...
This commit is contained in:
Calum Lind 2015-08-31 10:06:41 +01:00
parent 7ef9e3dbe0
commit 8e3d737adc
1 changed files with 10 additions and 8 deletions

View File

@ -312,11 +312,13 @@ class MainWindow(component.Component):
bool: True if on active workspace (or wnck module not available), otherwise False.
"""
if not wnck:
return True
win = wnck.window_get(self.window.window.xid)
active_wksp = win.get_screen().get_active_workspace()
if active_wksp:
return win.is_on_workspace(active_wksp)
else:
return False
if wnck:
self.screen.force_update()
win = wnck.window_get(self.window.window.xid)
if win:
active_wksp = win.get_screen().get_active_workspace()
if active_wksp:
return win.is_on_workspace(active_wksp)
else:
return False
return True