fixed bug [ 552723 ] removing decorations while shaded in toggleDecor
This commit is contained in:
parent
a10c34918c
commit
c8eeaea88f
1 changed files with 5 additions and 1 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.49 2002/05/07 13:31:11 fluxgen Exp $
|
// $Id: Window.cc,v 1.50 2002/05/07 13:50:34 fluxgen Exp $
|
||||||
|
|
||||||
#include "Window.hh"
|
#include "Window.hh"
|
||||||
|
|
||||||
|
@ -3510,6 +3510,10 @@ void FluxboxWindow::setDecoration(Decoration decoration) {
|
||||||
|
|
||||||
void FluxboxWindow::toggleDecoration() {
|
void FluxboxWindow::toggleDecoration() {
|
||||||
static bool decor = false;
|
static bool decor = false;
|
||||||
|
//don't toggle decor if the window is shaded
|
||||||
|
if (isShaded())
|
||||||
|
return;
|
||||||
|
|
||||||
if (!decor) {
|
if (!decor) {
|
||||||
setDecoration(DECOR_NONE);
|
setDecoration(DECOR_NONE);
|
||||||
decor = true;
|
decor = true;
|
||||||
|
|
Loading…
Reference in a new issue