fixed max over slit reversed
This commit is contained in:
parent
cc31156fbe
commit
bf4b327475
1 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@
|
||||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||||
// DEALINGS IN THE SOFTWARE.
|
// DEALINGS IN THE SOFTWARE.
|
||||||
|
|
||||||
// $Id: Window.cc,v 1.18 2002/01/11 10:04:32 fluxgen Exp $
|
// $Id: Window.cc,v 1.19 2002/01/11 17:01:31 fluxgen Exp $
|
||||||
|
|
||||||
// stupid macros needed to access some functions in version 2 of the GNU C
|
// stupid macros needed to access some functions in version 2 of the GNU C
|
||||||
// library
|
// library
|
||||||
|
@ -1817,7 +1817,7 @@ void FluxboxWindow::maximize(unsigned int button) {
|
||||||
#ifdef SLIT
|
#ifdef SLIT
|
||||||
Slit* mSlt = screen->getSlit();
|
Slit* mSlt = screen->getSlit();
|
||||||
|
|
||||||
if(screen->doMaxOverSlit() && !screen->doFullMax() && (mSlt->getWidth() > 1))
|
if(!screen->doMaxOverSlit() && !screen->doFullMax() && (mSlt->getWidth() > 1))
|
||||||
{
|
{
|
||||||
switch(screen->getSlitDirection())
|
switch(screen->getSlitDirection())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue