diff options
author | Mark Tiefenbruck <mark@fluxbox.org> | 2012-07-07 02:30:39 (GMT) |
---|---|---|
committer | Mark Tiefenbruck <mark@fluxbox.org> | 2012-07-07 02:30:39 (GMT) |
commit | 9eecd58bf30c8b1c0d72b9070bf91e2c60f32fa5 (patch) | |
tree | 340b04665d5df5305bdb59bf619aee8813b33d39 /src/Window.cc | |
parent | 610a15ac47371c5cbd4c2dcf6eec696aec5bb4fa (diff) | |
download | fluxbox_pavel-9eecd58bf30c8b1c0d72b9070bf91e2c60f32fa5.zip fluxbox_pavel-9eecd58bf30c8b1c0d72b9070bf91e2c60f32fa5.tar.bz2 |
make alt-tab skip modal windows
Diffstat (limited to 'src/Window.cc')
-rw-r--r-- | src/Window.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Window.cc b/src/Window.cc index f5a2fe2..3c8f87b 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -3306,6 +3306,10 @@ bool FluxboxWindow::acceptsFocus() const { | |||
3306 | return (m_client ? m_client->acceptsFocus() : false); | 3306 | return (m_client ? m_client->acceptsFocus() : false); |
3307 | } | 3307 | } |
3308 | 3308 | ||
3309 | bool FluxboxWindow::isModal() const { | ||
3310 | return (m_client ? m_client->isModal() : true); | ||
3311 | } | ||
3312 | |||
3309 | const FbTk::PixmapWithMask &FluxboxWindow::icon() const { | 3313 | const FbTk::PixmapWithMask &FluxboxWindow::icon() const { |
3310 | return (m_client ? m_client->icon() : m_icon); | 3314 | return (m_client ? m_client->icon() : m_icon); |
3311 | } | 3315 | } |