save button has focus and svn says 0.6.1 as version
This commit is contained in:
parent
cb65574c24
commit
2463197d4f
2
PKGBUILD
2
PKGBUILD
|
@ -2,7 +2,7 @@
|
||||||
#################
|
#################
|
||||||
|
|
||||||
pkgname=gajim
|
pkgname=gajim
|
||||||
pkgver=0.6
|
pkgver=0.6.1
|
||||||
pkgrel=1
|
pkgrel=1
|
||||||
pkgdesc="Gajim is a GTK Jabber client"
|
pkgdesc="Gajim is a GTK Jabber client"
|
||||||
url="http://www.gajim.org"
|
url="http://www.gajim.org"
|
||||||
|
|
|
@ -1334,10 +1334,10 @@ class Account_modification_window:
|
||||||
self.account = infos['accname']
|
self.account = infos['accname']
|
||||||
self.init_account(infos)
|
self.init_account(infos)
|
||||||
self.xml.get_widget('new_account_checkbutton').set_sensitive(False)
|
self.xml.get_widget('new_account_checkbutton').set_sensitive(False)
|
||||||
self.xml.get_widget('name_entry').grab_focus()
|
self.xml.get_widget('save_button').grab_focus()
|
||||||
|
|
||||||
class Accounts_window:
|
class Accounts_window:
|
||||||
"""Class for accounts window : lists of accounts"""
|
"""Class for accounts window: lists of accounts"""
|
||||||
def on_accounts_window_destroy(self, widget):
|
def on_accounts_window_destroy(self, widget):
|
||||||
"""close window"""
|
"""close window"""
|
||||||
del self.plugin.windows['accounts_window']
|
del self.plugin.windows['accounts_window']
|
||||||
|
|
|
@ -523,7 +523,7 @@ class About_dialog:
|
||||||
self.plugin = plugin
|
self.plugin = plugin
|
||||||
dlg = gtk.AboutDialog()
|
dlg = gtk.AboutDialog()
|
||||||
dlg.set_name('Gajim')
|
dlg.set_name('Gajim')
|
||||||
dlg.set_version('0.6')
|
dlg.set_version('0.6.1')
|
||||||
s = u'Copyright \xa9 2003-2005 Gajim Team'
|
s = u'Copyright \xa9 2003-2005 Gajim Team'
|
||||||
dlg.set_copyright(s)
|
dlg.set_copyright(s)
|
||||||
text = open('COPYING').read()
|
text = open('COPYING').read()
|
||||||
|
|
|
@ -1559,6 +1559,7 @@
|
||||||
<property name="can_default">True</property>
|
<property name="can_default">True</property>
|
||||||
<property name="has_default">True</property>
|
<property name="has_default">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
|
<property name="has_focus">True</property>
|
||||||
<property name="label">gtk-save</property>
|
<property name="label">gtk-save</property>
|
||||||
<property name="use_stock">True</property>
|
<property name="use_stock">True</property>
|
||||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||||
|
|
Loading…
Reference in New Issue