aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.cc
diff options
context:
space:
mode:
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}