aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-10-05 11:00:34 -0400
committerB. Stack <bgstack15@gmail.com>2022-10-05 11:00:34 -0400
commit381f8f7593d0ac1e4fdcf5ac910f37df7e436862 (patch)
treea56698e9b6d3c71d9ff0c4f19ea43f03fdc9f5d5
parentfix #2: update gtk3 settings.ini (diff)
downloadxdg-themes-stackrpms-381f8f7593d0ac1e4fdcf5ac910f37df7e436862.tar.gz
xdg-themes-stackrpms-381f8f7593d0ac1e4fdcf5ac910f37df7e436862.tar.bz2
xdg-themes-stackrpms-381f8f7593d0ac1e4fdcf5ac910f37df7e436862.zip
fix #3 gtk2 automnemonics
-rw-r--r--README.md3
-rw-r--r--src/usr/share/themes/bgstack15-red/gtk-2.0/gtkrc3
2 files changed, 5 insertions, 1 deletions
diff --git a/README.md b/README.md
index c8badaf..fc41fcb 100644
--- a/README.md
+++ b/README.md
@@ -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"
bgstack15