diff --git a/glade/aboutdialog.glade b/glade/aboutdialog.glade index c8799dc0d..78c924d90 100644 --- a/glade/aboutdialog.glade +++ b/glade/aboutdialog.glade @@ -1,16 +1,18 @@ - + + True + True 5 + True + GTK_WIN_POS_CENTER_ALWAYS True - True + GDK_WINDOW_TYPE_HINT_NORMAL True False - - diff --git a/src/dialogs.py b/src/dialogs.py index 7596ca2aa..42054c980 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -449,7 +449,6 @@ def show_about_dialog(window): gtk.about_dialog_set_url_hook(url_hook) abt = gtk.glade.XML(common.get_glade_file("aboutdialog.glade")).get_widget("aboutdialog") - abt.set_position(gtk.WIN_POS_CENTER) abt.set_transient_for(window) abt.set_name(common.PROGRAM_NAME) abt.set_version(common.PROGRAM_VERSION) @@ -457,7 +456,7 @@ def show_about_dialog(window): abt.set_documenters(["Marcos Pinto"]) abt.set_authors(["Zach Tibbitts", "Alon Zakai", "Marcos Pinto", "Andrew Resch", "Alex Dedul"]) abt.set_artists(["Andrew Wedderburn"]) - abt.set_translator_credits(" Alexandre Martani\n Augusta Carla Klug\n Daspah\n Fábio Nogueira\n Gustavo Henrique Klug\n Heitor Thury Barreiros Barbosa\n Helton Rodrigues\n José Geraldo Gouvêa\n Jr.\n LKRaider\n Marcos Pinto\n Pedro Clemente Pereira Neto\n Philipi\n Renato\n Ricardo Duarte\n Samuel R. C. Vale\n Sedir\n Vinícius de Figueiredo Silva\n Vitor Caike\n Vitor Lamas Gatti\n airmind\n alexandrenescau\n rohmaru") + abt.set_translator_credits("Alexandre Martani\nAugusta Carla Klug\nDaspah\nFábio Nogueira\nGustavo Henrique Klug\nHeitor Thury Barreiros Barbosa\nHelton Rodrigues\nJosé Geraldo Gouvêa\nJr.\nLKRaider\nMarcos Pinto\nPedro Clemente Pereira Neto\nPhilipi\nRenato\nRicardo Duarte\nSamuel R. C. Vale\nSedir\nVinícius de Figueiredo Silva\nVitor Caike\nVitor Lamas Gatti\nairmind\nalexandrenescau\nrohmaru") abt.set_license(_("Deluge is free software, you can redistribute it and/or\nmodify it under the terms of the GNU General Public\n License as published by the Free Software Foundation,\neither version 2 of the License, or (at your option) any\nlater version. Deluge is distributed in the hope that it\nwill be useful, but WITHOUT ANY WARRANTY, without even \nthe implied warranty of MERCHANTABILITY or FITNESS\nFOR A PARTICULAR PURPOSE. See the GNU General\nPublic License for more details. You should have received\na copy of the GNU General Public License along with\nDeluge, but if not, write to the Free Software Foundation,\n Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-\n1301 USA")) abt.set_website("http://deluge-torrent.org") abt.set_website_label("http://deluge-torrent.org")