aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-01-11 17:01:31 (GMT)
committerfluxgen <fluxgen>2002-01-11 17:01:31 (GMT)
commitbf4b3274756b6de5fd6036689dc54da71987513d (patch)
tree2284cee9c0a783131b4b78b5f7dd48ed527f5339
parentcc31156fbe3ff4f4a25652791ca695dab4426032 (diff)
downloadfluxbox-bf4b3274756b6de5fd6036689dc54da71987513d.zip
fluxbox-bf4b3274756b6de5fd6036689dc54da71987513d.tar.bz2
fixed max over slit reversed
-rw-r--r--src/Window.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Window.cc b/src/Window.cc
index 1669df9..588e7a5 100644
--- a/src/Window.cc
+++ b/src/Window.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Window.cc,v 1.18 2002/01/11 10:04:32 fluxgen Exp $ 25// $Id: Window.cc,v 1.19 2002/01/11 17:01:31 fluxgen Exp $
26 26
27// stupid macros needed to access some functions in version 2 of the GNU C 27// stupid macros needed to access some functions in version 2 of the GNU C
28// library 28// library
@@ -1817,7 +1817,7 @@ void FluxboxWindow::maximize(unsigned int button) {
1817#ifdef SLIT 1817#ifdef SLIT
1818 Slit* mSlt = screen->getSlit(); 1818 Slit* mSlt = screen->getSlit();
1819 1819
1820 if(screen->doMaxOverSlit() && !screen->doFullMax() && (mSlt->getWidth() > 1)) 1820 if(!screen->doMaxOverSlit() && !screen->doFullMax() && (mSlt->getWidth() > 1))
1821 { 1821 {
1822 switch(screen->getSlitDirection()) 1822 switch(screen->getSlitDirection())
1823 { 1823 {