diff options
author | markt <markt> | 2007-06-03 23:51:11 (GMT) |
---|---|---|
committer | markt <markt> | 2007-06-03 23:51:11 (GMT) |
commit | 8f89c86592a27a175f6a104730fa92a81388f4a8 (patch) | |
tree | a0358ab1f27c2f0b6d83a0dd4b3bfcd209e84a43 /src/FbMenu.cc | |
parent | c16f838abfbe0808b1b05d6df9abab8a34538c6f (diff) | |
download | fluxbox-8f89c86592a27a175f6a104730fa92a81388f4a8.zip fluxbox-8f89c86592a27a175f6a104730fa92a81388f4a8.tar.bz2 |
update menu xinerama settings after moving
Diffstat (limited to 'src/FbMenu.cc')
-rw-r--r-- | src/FbMenu.cc | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/FbMenu.cc b/src/FbMenu.cc index bcef502..040a881 100644 --- a/src/FbMenu.cc +++ b/src/FbMenu.cc | |||
@@ -23,8 +23,10 @@ | |||
23 | 23 | ||
24 | 24 | ||
25 | #include "FbMenu.hh" | 25 | #include "FbMenu.hh" |
26 | #include "MenuTheme.hh" | ||
27 | 26 | ||
27 | #include "fluxbox.hh" | ||
28 | #include "MenuTheme.hh" | ||
29 | #include "Screen.hh" | ||
28 | #include "Shape.hh" | 30 | #include "Shape.hh" |
29 | 31 | ||
30 | FbMenu::FbMenu(MenuTheme &tm, FbTk::ImageControl &imgctrl, | 32 | FbMenu::FbMenu(MenuTheme &tm, FbTk::ImageControl &imgctrl, |
@@ -54,3 +56,17 @@ void FbMenu::reconfigure() { | |||
54 | FbTk::Menu::reconfigure(); | 56 | FbTk::Menu::reconfigure(); |
55 | } | 57 | } |
56 | 58 | ||
59 | void FbMenu::buttonReleaseEvent(XButtonEvent &be) { | ||
60 | BScreen *screen = Fluxbox::instance()->findScreen(screenNumber()); | ||
61 | if (be.window == titleWindow() && isMoving() && screen) { | ||
62 | // menu stopped moving, so update head | ||
63 | int head = screen->getHead(be.x_root, be.y_root); | ||
64 | setScreen(screen->getHeadX(head), | ||
65 | screen->getHeadY(head), | ||
66 | screen->getHeadWidth(head), | ||
67 | screen->getHeadHeight(head)); | ||
68 | } | ||
69 | |||
70 | // now get on with the show | ||
71 | FbTk::Menu::buttonReleaseEvent(be); | ||
72 | } | ||