|
@ -218,10 +218,8 @@ setlayout(const char *arg) { |
|
|
|
|
|
|
|
|
void |
|
|
void |
|
|
togglebar(const char *arg) { |
|
|
togglebar(const char *arg) { |
|
|
if(bpos == BarOff) { |
|
|
|
|
|
if((bpos = BARPOS) == BarOff) |
|
|
|
|
|
bpos = BarTop; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
if(bpos == BarOff) |
|
|
|
|
|
bpos = (BARPOS == BarOff) ? BarTop : BARPOS; |
|
|
else |
|
|
else |
|
|
bpos = BarOff; |
|
|
bpos = BarOff; |
|
|
updatebarpos(); |
|
|
updatebarpos(); |
|
|