Skip to content
Snippets Groups Projects
Commit b90bead5 authored by nkour's avatar nkour
Browse files

fix #413

parent 0227302e
No related branches found
No related tags found
No related merge requests found
......@@ -64,6 +64,7 @@ install:
cp COPYING "$(DESTDIR)$(PREFIX)/share/gajim/";
mkdir -p "$(DESTDIR)$(PREFIX)/share/pixmaps";
cp data/pixmaps/gajim.png "$(DESTDIR)$(PREFIX)/share/pixmaps/";
cp data/pixmaps/gajim_about.png "$(DESTDIR)$(PREFIX)/share/pixmaps/";
mkdir -p "$(DESTDIR)$(PREFIX)/share/applications";
cp gajim.desktop "$(DESTDIR)$(PREFIX)/share/applications/";
mkdir -p "$(DESTDIR)$(PREFIX)/share/man/man1";
......
data/pixmaps/gajim.png

19.5 KiB | W: | H:

data/pixmaps/gajim.png

4.39 KiB | W: | H:

data/pixmaps/gajim.png
data/pixmaps/gajim.png
data/pixmaps/gajim.png
data/pixmaps/gajim.png
  • 2-up
  • Swipe
  • Onion skin
data/pixmaps/gajim_about.png

19.5 KiB

......@@ -372,12 +372,12 @@ _('User names must be of the form "user@servername".')).get_response()
self.fill_jid()
self.old_uid_value = uid.split('@')[0]
class About_dialog:
class AboutDialog:
'''Class for about dialog'''
def __init__(self):
if gtk.pygtk_version < (2, 6, 0) or gtk.gtk_version < (2, 6, 0):
Information_dialog(_('Gajim - a GTK+ Jabber client'),
'Version %s' % gajim.version).get_response()
_('Version %s') % gajim.version).get_response()
return
dlg = gtk.AboutDialog()
......@@ -394,7 +394,7 @@ class About_dialog:
authors = ['Yann Le Boulanger <asterix@lagaule.org>', 'Vincent Hanquez <tab@snarc.org>', 'Nikos Kouremenos <kourem@gmail.com>', 'Alex Podaras <bigpod@gmail.com>', 'Gajim patchers <http://www.gajim.org/dev.php>']
dlg.set_authors(authors)
pixbuf = gtk.gdk.pixbuf_new_from_file(os.path.join(gajim.DATA_DIR, 'pixmaps/gajim.png'))
pixbuf = gtk.gdk.pixbuf_new_from_file(os.path.join(gajim.DATA_DIR, 'pixmaps/gajim_about.png'))
dlg.set_logo(pixbuf)
dlg.set_translator_credits(_('translator_credits'))
......
......@@ -1073,7 +1073,7 @@ class Roster_window:
dialogs.New_message_dialog(self.plugin, account)
def on_about_menuitem_activate(self, widget):
dialogs.About_dialog()
dialogs.AboutDialog()
def on_accounts_menuitem_activate(self, widget):
if self.plugin.windows.has_key('accounts'):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment