aboutsummaryrefslogtreecommitdiff
path: root/src/FbWinFrame.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbWinFrame.cc')
-rw-r--r--src/FbWinFrame.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/FbWinFrame.cc b/src/FbWinFrame.cc
index 5b91218..fc35ae1 100644
--- a/src/FbWinFrame.cc
+++ b/src/FbWinFrame.cc
@@ -1717,3 +1717,10 @@ void FbWinFrame::displaySize(unsigned int width, unsigned int height) const {
1717 width, height - titlebarHeight() - handleHeight()); 1717 width, height - titlebarHeight() - handleHeight());
1718 m_screen.showGeometry(i, j); 1718 m_screen.showGeometry(i, j);
1719} 1719}
1720
1721bool FbWinFrame::insideTitlebar(Window win) const {
1722 return
1723 gripLeft().window() != win &&
1724 gripRight().window() != win &&
1725 window().window() != win;
1726}