better varname

This commit is contained in:
Nikos Kouremenos 2005-10-17 12:45:55 +00:00
parent 4e7f9f5820
commit 1ffb867355
2 changed files with 12 additions and 12 deletions

View File

@ -95,10 +95,10 @@ class Config:
'chat-y-position': [opt_int, 0], 'chat-y-position': [opt_int, 0],
'chat-width': [opt_int, 480], 'chat-width': [opt_int, 480],
'chat-height': [opt_int, 440], 'chat-height': [opt_int, 440],
'single-x-position': [opt_int, 0], 'single_msg-x-position': [opt_int, 0],
'single-y-position': [opt_int, 0], 'single_msg-y-position': [opt_int, 0],
'single-width': [opt_int, 400], 'single_msg-width': [opt_int, 400],
'single-height': [opt_int, 280], 'single_msg-height': [opt_int, 280],
'roster_x-position': [ opt_int, 0 ], 'roster_x-position': [ opt_int, 0 ],
'roster_y-position': [ opt_int, 0 ], 'roster_y-position': [ opt_int, 0 ],
'roster_width': [ opt_int, 150 ], 'roster_width': [ opt_int, 150 ],

View File

@ -1013,22 +1013,22 @@ class SingleMessageWindow:
if gajim.config.get('saveposition'): if gajim.config.get('saveposition'):
# get window position and size from config # get window position and size from config
gtkgui_helpers.move_window(self.window, gtkgui_helpers.move_window(self.window,
gajim.config.get('single-x-position'), gajim.config.get('single_msg-x-position'),
gajim.config.get('single-y-position')) gajim.config.get('single_msg-y-position'))
gtkgui_helpers.resize_window(self.window, gtkgui_helpers.resize_window(self.window,
gajim.config.get('single-width'), gajim.config.get('single_msg-width'),
gajim.config.get('single-height')) gajim.config.get('single_msg-height'))
self.window.show_all() self.window.show_all()
def on_single_message_window_destroy(self, window): def on_single_message_window_destroy(self, window):
if gajim.config.get('saveposition'): if gajim.config.get('saveposition'):
# save the window size and position # save the window size and position
x, y = self.window.get_position() x, y = self.window.get_position()
gajim.config.set('single-x-position', x) gajim.config.set('single_msg-x-position', x)
gajim.config.set('single-y-position', y) gajim.config.set('single_msg-y-position', y)
width, height = self.window.get_size() width, height = self.window.get_size()
gajim.config.set('single-width', width) gajim.config.set('single_msg-width', width)
gajim.config.set('single-height', height) gajim.config.set('single_msg-height', height)
def prepare_widgets_for(self, action): def prepare_widgets_for(self, action):
our_jid = gajim.config.get_per('accounts', self.account, 'name') + '@' + \ our_jid = gajim.config.get_per('accounts', self.account, 'name') + '@' + \