1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
Description: Fix row button labels
Origin: upstream, http://sourceforge.net/p/xbae/patches/2/
Last-Update: 2014-06-08
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: xbae-4.60.4/src/Actions.c
===================================================================
--- xbae-4.60.4.orig/src/Actions.c
+++ xbae-4.60.4/src/Actions.c
@@ -1558,7 +1558,7 @@ void xbaeLabelACT(Widget w, XEvent * eve
|| (mw->matrix.column_button_labels && mw->matrix.column_button_labels[column]
&& (initial_region & CLIP_COLUMN_LABELS))
|| (mw->matrix.row_button_labels && mw->matrix.row_button_labels[row]
- && (initial_region & CLIP_COLUMN_LABELS))) {
+ && (initial_region & CLIP_ROW_LABELS))) {
if (column == -1) {
/* row label */
|