projects
/
dana
/
openbox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
08bd38e
)
Fixed a wierd bug when resizing a shaded window
author
Scott Moynes
<smoynes@nexus.carleton.ca>
Mon, 3 Feb 2003 01:31:46 +0000
(
01:31
+0000)
committer
Scott Moynes
<smoynes@nexus.carleton.ca>
Mon, 3 Feb 2003 01:31:46 +0000
(
01:31
+0000)
src/Window.cc
patch
|
blob
|
history
diff --git
a/src/Window.cc
b/src/Window.cc
index 50431428c1d1b3e84a229b3366d179941713c0ea..e567ac93632a53d03e2c73ff878b772c0f8842f7 100644
(file)
--- a/
src/Window.cc
+++ b/
src/Window.cc
@@
-3899,6
+3899,7
@@
void BlackboxWindow::motionNotifyEvent(const XMotionEvent *me) {
if (flags.moving) {
doMove(me->x_root, me->y_root);
} else if (flags.resizing) {
+ if (flags.shaded) shade(); //unshade
doResize(me->x_root, me->y_root);
} else {
if ((functions & Func_Move) &&