Fix flickering tooltips in 3.24.1
This commit is contained in:
parent
664a96cef2
commit
117be4878c
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue