https://bugs.documentfoundation.org/show_bug.cgi?id=99326

--- Comment #8 from Simon Long <si...@raspberrypi.org> ---
Now I look at the code again, my original patch already implements reading and
setting auto-hiding behaviour according to the GTK theme in effect - the lines:

+    g_object_get (gtks, "gtk-auto-mnemonics", &val, NULL);
+    if (val) pSVData->maNWFData.mbAutoAccel = true;
+    else pSVData->maNWFData.mbAutoAccel = false;
+    g_object_get (gtks, "gtk-enable-mnemonics", &val, NULL);
+    if (val) pSVData->maNWFData.mbEnableAccel = true;

in salnativewidgets-gtk.cxx do just this.

Have you actually tried setting the value of gtk-auto-mnemonics in your theme
to 0?

If you add the lines 

gtk-enable-mnemonics = 1
gtk-auto-mnemonics = 0

to the start of your gtkrc file, accelerator underscores should be shown all
the time.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to