summaryrefslogtreecommitdiffstats
path: root/obconf
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2013-05-16 20:16:53 +0000
committer Eric Hameleers <alien@slackware.com>2013-05-16 20:16:53 +0000
commitf621d5a8110d9997b193382d69387fec3f4483c2 (patch)
treee87e69048817229feb76f5b4bc4aff849e0a8d62 /obconf
parent4281036a889816ccd78c17d65a9c758e9fda63da (diff)
downloadasb-f621d5a8110d9997b193382d69387fec3f4483c2.tar.gz
asb-f621d5a8110d9997b193382d69387fec3f4483c2.tar.xz
Initial revision
Diffstat (limited to 'obconf')
-rw-r--r--obconf/build/obconf_git_preview.patch43
1 files changed, 43 insertions, 0 deletions
diff --git a/obconf/build/obconf_git_preview.patch b/obconf/build/obconf_git_preview.patch
new file mode 100644
index 00000000..3eec5f67
--- /dev/null
+++ b/obconf/build/obconf_git_preview.patch
@@ -0,0 +1,43 @@
+Patch by Andrew Rowland <darowland@ieee.org>
+
+--- obconf-orig/src/preview.c 2012-01-13 15:51:59.000000000 -0500
++++ obconf/src/preview.c 2012-01-13 15:53:39.000000000 -0500
+@@ -327,28 +327,28 @@
+ switch (*layout) {
+ case 'D':
+ a = focus ?
+- theme->btn_desk->a_focused_unpressed :
+- theme->btn_desk->a_unfocused_unpressed;
++ theme->a_focused_unpressed_desk :
++ theme->a_unfocused_unpressed_desk;
+ break;
+ case 'S':
+ a = focus ?
+- theme->btn_shade->a_focused_unpressed :
+- theme->btn_shade->a_unfocused_unpressed;
++ theme->a_focused_unpressed_shade :
++ theme->a_unfocused_unpressed_shade;
+ break;
+ case 'I':
+ a = focus ?
+- theme->btn_iconify->a_focused_unpressed :
+- theme->btn_iconify->a_unfocused_unpressed;
++ theme->a_focused_unpressed_iconify :
++ theme->a_unfocused_unpressed_iconify;
+ break;
+ case 'M':
+ a = focus ?
+- theme->btn_max->a_focused_unpressed :
+- theme->btn_max->a_unfocused_unpressed;
++ theme->a_focused_unpressed_max :
++ theme->a_unfocused_unpressed_max;
+ break;
+ case 'C':
+ a = focus ?
+- theme->btn_close->a_focused_unpressed :
+- theme->btn_close->a_unfocused_unpressed;
++ theme->a_focused_unpressed_close :
++ theme->a_unfocused_unpressed_close;
+ break;
+ default:
+ continue;