aboutsummaryrefslogtreecommitdiff
path: root/src/Screen.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-04-28 12:58:08 (GMT)
committerrathnor <rathnor>2003-04-28 12:58:08 (GMT)
commitaf8510a5a7da755a0677405c7d009ad01e6d67a6 (patch)
treefeb3bd0f24d67d31d5c788d147d40a64bc15a49d /src/Screen.cc
parent93fab45accee2f5d0375f6686269e8cd9a588ab9 (diff)
downloadfluxbox-af8510a5a7da755a0677405c7d009ad01e6d67a6.zip
fluxbox-af8510a5a7da755a0677405c7d009ad01e6d67a6.tar.bz2
fix detachClient issue where the menu wouldn't get created before adding
remember. Also make this safer in Remember.cc
Diffstat (limited to 'src/Screen.cc')
-rw-r--r--src/Screen.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Screen.cc b/src/Screen.cc
index 00615e6..4c9c93e 100644
--- a/src/Screen.cc
+++ b/src/Screen.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Screen.cc,v 1.140 2003/04/28 00:36:50 fluxgen Exp $ 25// $Id: Screen.cc,v 1.141 2003/04/28 12:58:08 rathnor Exp $
26 26
27 27
28#include "Screen.hh" 28#include "Screen.hh"
@@ -1291,8 +1291,8 @@ FluxboxWindow *BScreen::createWindow(WinClient &client) {
1291 // WinClient already exists). 1291 // WinClient already exists).
1292 1292
1293 Fluxbox::instance()->saveWindowSearch(client.window(), win); 1293 Fluxbox::instance()->saveWindowSearch(client.window(), win);
1294 Fluxbox::instance()->attachSignals(*win);
1295 setupWindowActions(*win); 1294 setupWindowActions(*win);
1295 Fluxbox::instance()->attachSignals(*win);
1296 if (win->getWorkspaceNumber() == getCurrentWorkspaceID() || win->isStuck()) { 1296 if (win->getWorkspaceNumber() == getCurrentWorkspaceID() || win->isStuck()) {
1297 win->show(); 1297 win->show();
1298 } 1298 }