aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2006-06-18 21:23:24 (GMT)
committerfluxgen <fluxgen>2006-06-18 21:23:24 (GMT)
commit85f45be7271252d86d583411780a4b139ee1aa75 (patch)
treeb6037c72a27dadea3b971a6886f98f364b11dff2 /src/fluxbox.cc
parent7d5f6e382b7f06913c421db4357e13841e1a9632 (diff)
downloadfluxbox-85f45be7271252d86d583411780a4b139ee1aa75.zip
fluxbox-85f45be7271252d86d583411780a4b139ee1aa75.tar.bz2
added support for _NET_WM_WINDOW_TYPE_DIALOG and _NET_FRAME_EXTENTS
Diffstat (limited to 'src/fluxbox.cc')
-rw-r--r--src/fluxbox.cc8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc
index 70c5993..94c9730 100644
--- a/src/fluxbox.cc
+++ b/src/fluxbox.cc
@@ -1847,3 +1847,11 @@ void Fluxbox::watchKeyRelease(BScreen &screen, unsigned int mods) {
1847 screen.rootWindow().window(), True, 1847 screen.rootWindow().window(), True,
1848 GrabModeAsync, GrabModeAsync, CurrentTime); 1848 GrabModeAsync, GrabModeAsync, CurrentTime);
1849} 1849}
1850
1851void Fluxbox::updateFrameExtents(FluxboxWindow &win) {
1852 AtomHandlerContainerIt it = m_atomhandler.begin();
1853 AtomHandlerContainerIt it_end = m_atomhandler.end();
1854 for (; it != it_end; ++it ) {
1855 (*it).first->updateFrameExtents(win);
1856 }
1857}