make sure autogrouped windows get added to the apps file
This commit is contained in:
parent
1a8edfa7d7
commit
9db57d56d3
2 changed files with 7 additions and 2 deletions
|
@ -1,6 +1,8 @@
|
||||||
(Format: Year/Month/Day)
|
(Format: Year/Month/Day)
|
||||||
Changes for 1.0rc3:
|
Changes for 1.0rc3:
|
||||||
*07/03/10:
|
*07/03/10:
|
||||||
|
* Autogrouped windows weren't getting added to the workspace menu (Mark)
|
||||||
|
Screen.cc
|
||||||
* Changed default toolbar layer to DOCK, as a large window could render
|
* Changed default toolbar layer to DOCK, as a large window could render
|
||||||
fluxbox useless to a new user otherwise (Mark)
|
fluxbox useless to a new user otherwise (Mark)
|
||||||
Toolbar.cc doc/asciidoc/fluxbox.txt
|
Toolbar.cc doc/asciidoc/fluxbox.txt
|
||||||
|
|
|
@ -1449,9 +1449,12 @@ FluxboxWindow *BScreen::createWindow(Window client) {
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
Fluxbox::instance()->attachSignals(*winclient);
|
Fluxbox::instance()->attachSignals(*winclient);
|
||||||
if (winclient->fbwindow()) // may have been set in an atomhandler
|
if (winclient->fbwindow()) { // may have been set in an atomhandler
|
||||||
win = winclient->fbwindow();
|
win = winclient->fbwindow();
|
||||||
else {
|
Workspace *workspace = getWorkspace(win->workspaceNumber());
|
||||||
|
if (workspace)
|
||||||
|
workspace->updateClientmenu();
|
||||||
|
} else {
|
||||||
win = new FluxboxWindow(*winclient,
|
win = new FluxboxWindow(*winclient,
|
||||||
winFrameTheme(),
|
winFrameTheme(),
|
||||||
*layerManager().getLayer(Layer::NORMAL));
|
*layerManager().getLayer(Layer::NORMAL));
|
||||||
|
|
Loading…
Reference in a new issue