Skip to content
Snippets Groups Projects
Commit 3a97d44e authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Fix flickering tooltips in 3.24.1

parent c2d03dbf
No related branches found
No related tags found
No related merge requests found
......@@ -74,6 +74,11 @@ def _init_gtk():
from gajim.application import GajimApplication
# Fix bug in 3.24.1 with flickering tooltips
if sys.platform in ('darwin', 'win32'):
settings = Gtk.Settings.get_default()
settings.set_property('gtk-cursor-theme-size', 16)
application = GajimApplication()
_install_sginal_handlers(application)
application.run(sys.argv)
......
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