projects
/
xboard.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
d169fe2
)
Remove unnecessary menu unmarking for Edit Tags
author
H.G. Muller
<h.g.muller@hccnet.nl>
Sat, 31 Mar 2012 08:53:46 +0000 (10:53 +0200)
committer
H.G. Muller
<h.g.muller@hccnet.nl>
Tue, 10 Apr 2012 09:39:40 +0000 (11:39 +0200)
xedittags.c
patch
|
blob
|
history
diff --git
a/xedittags.c
b/xedittags.c
index
0235da4
..
417c2b6
100644
(file)
--- a/
xedittags.c
+++ b/
xedittags.c
@@
-119,11
+119,5
@@
EditTagsProc ()
{
Arg args[5];
int j;
- if (!bookUp && PopDown(TagsDlg)) {
- j = 0;
- XtSetArg(args[j], XtNleftBitmap, None); j++;
- XtSetValues(XtNameToWidget(menuBarWidget, "menuView.Show Tags"), args, j);
- } else {
- EditTagsEvent();
- }
+ if (bookUp || !PopDown(TagsDlg)) EditTagsEvent();
}