diff options
author | B. Stack <bgstack15@gmail.com> | 2022-10-05 11:00:34 -0400 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-10-05 11:00:34 -0400 |
commit | 381f8f7593d0ac1e4fdcf5ac910f37df7e436862 (patch) | |
tree | a56698e9b6d3c71d9ff0c4f19ea43f03fdc9f5d5 | |
parent | fix #2: update gtk3 settings.ini (diff) | |
download | xdg-themes-stackrpms-381f8f7593d0ac1e4fdcf5ac910f37df7e436862.tar.gz xdg-themes-stackrpms-381f8f7593d0ac1e4fdcf5ac910f37df7e436862.tar.bz2 xdg-themes-stackrpms-381f8f7593d0ac1e4fdcf5ac910f37df7e436862.zip |
fix #3 gtk2 automnemonics
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | src/usr/share/themes/bgstack15-red/gtk-2.0/gtkrc | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -11,3 +11,6 @@ See [fluxbox-themes-stackrpms](https://gitlab.com/bgstack15/fluxbox-themes-stack # How to use * Build as a [dpkg](https://gitlab.com/bgstack15/stackrpms/-/tree/master/xdg-themes-stackrpms) * Install from the [Open Build Service](https://build.opensuse.org/package/show/home:bgstack15/xdg-themes-stackrpms) + +# Changelog +2022-10-05 fix #3: Fix gtk2 gtkrc automnemonics diff --git a/src/usr/share/themes/bgstack15-red/gtk-2.0/gtkrc b/src/usr/share/themes/bgstack15-red/gtk-2.0/gtkrc index ec28a45..70c3a15 100644 --- a/src/usr/share/themes/bgstack15-red/gtk-2.0/gtkrc +++ b/src/usr/share/themes/bgstack15-red/gtk-2.0/gtkrc @@ -14,7 +14,8 @@ gtk-color-scheme = "link_color: #e57752" gtk-color-scheme = "menu_bg: #ffffff" gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. -gtk-auto-mnemonics = 1 # 1 makes underlines appear without having to press ALT +gtk-enable-mnemonics = 1 # 1 to turn them on +gtk-auto-mnemonics = 0 # 0 disabled "automatic" so they are simply always on gtk-primary-button-warps-slider = 1 include "main.rc" |