Skip to content

Commit

Permalink
empty
Browse files Browse the repository at this point in the history
  • Loading branch information
rjolly committed Dec 22, 2019
1 parent 4563b37 commit 38646ae
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions wm/src/linoleum/wm/WindowManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,11 @@ private void unmap() {
client.early_unmapped = false;
if (client.state != HIDDEN) {
client.state = UNMANAGED;
client.set_wm_state(Window.WMState.WITHDRAWN);
client.change_save_set(true);
// client.set_wm_state(Window.WMState.WITHDRAWN);
// client.change_save_set(true);
}
closed = true;
doDefaultCloseAction();
}

private void when_configure_notify(final ConfigureNotify event) {
Expand Down Expand Up @@ -437,7 +439,7 @@ public void componentResized(java.awt.event.ComponentEvent evt) {
}// </editor-fold>//GEN-END:initComponents

private void formInternalFrameActivated(javax.swing.event.InternalFrameEvent evt) {//GEN-FIRST:event_formInternalFrameActivated
if (client != null && mapped && !closed && !isIcon()) {
if (client != null && !closed && !isIcon()) {
if (client.early_unmapped || client.early_destroyed) {
return;
}
Expand All @@ -457,7 +459,7 @@ private void formInternalFrameClosed(javax.swing.event.InternalFrameEvent evt) {
}//GEN-LAST:event_formInternalFrameClosed

private void formInternalFrameDeactivated(javax.swing.event.InternalFrameEvent evt) {//GEN-FIRST:event_formInternalFrameDeactivated
if (client != null && mapped && !closed) {
if (client != null && !closed) {
if (client.early_unmapped || client.early_destroyed) {
return;
}
Expand Down

0 comments on commit 38646ae

Please sign in to comment.