all repos — fluxbox @ ffcc409ad9b7364cfff46e4257d0a6eba98b07bf

custom fork of the fluxbox windowmanager

make sure the tab window does not map if the window is iconified
fluxgen fluxgen
commit

ffcc409ad9b7364cfff46e4257d0a6eba98b07bf

parent

80c71b3fdc9b4962201ff73fc5a6b090927a7ca9

1 files changed, 4 insertions(+), 3 deletions(-)

jump to
M src/Tab.ccsrc/Tab.cc

@@ -19,7 +19,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Tab.cc,v 1.39 2002/11/12 22:57:03 fluxgen Exp $ +// $Id: Tab.cc,v 1.40 2002/11/15 14:06:33 fluxgen Exp $ #include "Tab.hh"

@@ -119,8 +119,9 @@ //save to tabsearch

Fluxbox::instance()->saveTabSearch(m_tabwin, this); XMapSubwindows(m_display, m_tabwin); - - XMapWindow(m_display, m_tabwin); + // don't show if the window is iconified + if (!m_win->isIconic()) + XMapWindow(m_display, m_tabwin); decorate(); }