diff options
Diffstat (limited to 'src/Remember.cc')
-rw-r--r-- | src/Remember.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Remember.cc b/src/Remember.cc index e0a7b0f..55816c4 100644 --- a/src/Remember.cc +++ b/src/Remember.cc | |||
@@ -1132,8 +1132,10 @@ void Remember::setupFrame(FluxboxWindow &win) { | |||
1132 | 1132 | ||
1133 | void Remember::setupClient(WinClient &winclient) { | 1133 | void Remember::setupClient(WinClient &winclient) { |
1134 | 1134 | ||
1135 | if (winclient.screen().isRestart()) | 1135 | // leave windows alone on restart |
1136 | return; // don't mess up windows on restart | 1136 | // don't apply settings to transient windows |
1137 | if (winclient.screen().isRestart() || winclient.transientFor()) | ||
1138 | return; | ||
1137 | 1139 | ||
1138 | Application *app = find(winclient); | 1140 | Application *app = find(winclient); |
1139 | if (app == 0) | 1141 | if (app == 0) |