Philipp Hörist pushed to branch master at gajim / gajim
Commits:
5837c470 by Philipp Hörist at 2017-09-02T12:05:32+02:00
Add dummy AUTHORS file
we need this for automake as it seems
- - - - -
a462af55 by Philipp Hörist at 2017-09-02T12:07:14+02:00
Hide License Button only on Windows
- - - - -
2 changed files:
- + AUTHORS
- gajim/dialogs.py
Changes:
=====================================
AUTHORS
=====================================
--- /dev/null
+++ b/AUTHORS
=====================================
gajim/dialogs.py
=====================================
--- a/gajim/dialogs.py
+++ b/gajim/dialogs.py
@@ -1329,7 +1329,9 @@ class AboutDialog(Gtk.AboutDialog):
self.show_all()
# GTK Bug, We have to manually hide the License Button
- self.get_action_area().get_children()[1].hide()
+ # Bug exists only on Windows
+ if os.name == 'nt':
+ self.get_action_area().get_children()[1].hide()
class Dialog(Gtk.Dialog):
View it on GitLab:
https://dev.gajim.org/gajim/gajim/compare/4372b67433efae9f599fbed2acc501ce80d8edb1...a462af555b41a425a1da76bc970affb04d5bc49f
---
View it on GitLab:
https://dev.gajim.org/gajim/gajim/compare/4372b67433efae9f599fbed2acc501ce80d8edb1...a462af555b41a425a1da76bc970affb04d5bc49f
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits