Disable resizing support for windows. Fix and enable later.

This commit is contained in:
Eratosthenes 2011-03-02 21:56:30 -05:00
parent e69e2edc42
commit 659faa125e

View File

@ -52,6 +52,7 @@ if sys.platform == 'linux2':
elif sys.platform == 'darwin': elif sys.platform == 'darwin':
import OSXTables as Tables import OSXTables as Tables
else: # This is bad--figure out the values for the various windows flavors else: # This is bad--figure out the values for the various windows flavors
is_windows = True
import WinTables as Tables import WinTables as Tables
# get config and set up logger # get config and set up logger
@ -126,7 +127,9 @@ class HUD_main(object):
hud.up_update_table_position() hud.up_update_table_position()
def client_resized(self, widget, hud): def client_resized(self, widget, hud):
gobject.idle_add(idle_resize, hud) # Don't forget to get rid of this.
if not is_windows:
gigobject.idle_add(idle_resize, hud)
def client_destroyed(self, widget, hud): # call back for terminating the main eventloop def client_destroyed(self, widget, hud): # call back for terminating the main eventloop
self.kill_hud(None, hud.table.key) self.kill_hud(None, hud.table.key)