projects
/
xboard.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
621d128
)
Fix fix of switch to mono-mode
author
H.G. Muller
<h.g.muller@hccnet.nl>
Thu, 19 Jan 2012 22:01:20 +0000 (23:01 +0100)
committer
H.G. Muller
<h.g.muller@hccnet.nl>
Tue, 7 Feb 2012 22:12:19 +0000 (23:12 +0100)
The previous fix had == in stead of != for testing if mono-mode had changed.
xboard.c
patch
|
blob
|
history
diff --git
a/xboard.c
b/xboard.c
index
f05027d
..
5384720
100644
(file)
--- a/
xboard.c
+++ b/
xboard.c
@@
-1817,7
+1817,7
@@
InitDrawingSizes (BoardSize boardSize, int flags)
}
}
#if HAVE_LIBXPM
- if(appData.monoMode == oldMono)
+ if(appData.monoMode != oldMono)
CreateAnimVars();
#endif
oldMono = appData.monoMode;