[Bug 802309] New: Libreoffice doesn't follow new GNOME3 "gtk-primary-button-warps-slider" setting
https://bugzilla.novell.com/show_bug.cgi?id=802309 https://bugzilla.novell.com/show_bug.cgi?id=802309#c0 Summary: Libreoffice doesn't follow new GNOME3 "gtk-primary-button-warps-slider" setting Classification: openSUSE Product: openSUSE Factory Version: 12.3 Beta 1 Platform: Other OS/Version: Other Status: NEW Severity: Major Priority: P5 - None Component: LibreOffice AssignedTo: bnc-team-ooo@forge.provo.novell.com ReportedBy: fcrozat@suse.com QAContact: qa-bugs@suse.de Found By: --- Blocker: --- Since GNOME 3.6 / gtk 3.6 (and gtk 2.24.12+), gtk follows a new gtk settings named "gtk-primary-button-warps-slider" which is modifying scrollbar and other gtkrange classes to use "primary button" (ie button 1) to move slider, instead of middle button (button 2). Unfortunately, Libreoffice is handling those events on scrollbar on its own and doesn't follow this setting, still using the "old" setting. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=802309 https://bugzilla.novell.com/show_bug.cgi?id=802309#c2 Michael Meeks <mmeeks@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #2 from Michael Meeks <mmeeks@suse.com> 2013-02-14 10:08:29 UTC --- We should integrate with that already since LibreOffice 4.0 gboolean showmenuicons = true, primarybuttonwarps = false; g_object_get( pSettings, "gtk-menu-images", &showmenuicons, (char *)NULL ); if( g_object_class_find_property( G_OBJECT_GET_CLASS(pSettings), "gtk-primary-button-warps-slider") ) { g_object_get( pSettings, "gtk-primary-button-warps-slider", &primarybuttonwarps, (char *)NULL ); } aStyleSet.SetPreferredUseImagesInMenus(showmenuicons); aStyleSet.SetPrimaryButtonWarpsSlider(primarybuttonwarps); Is there some bug with that ? any chance you could verify that it works with the LibreOffice:UNSTABLE packages ? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=802309 https://bugzilla.novell.com/show_bug.cgi?id=802309#c3 --- Comment #3 from Frederic Crozat <fcrozat@suse.com> 2013-02-14 12:20:26 UTC --- (In reply to comment #2)
Is there some bug with that ? any chance you could verify that it works with the LibreOffice:UNSTABLE packages ?
I'm testing what is available in 12.3 :) Feel free to backport the fix there (or try to push LO 4.0 there :))) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com