]> git.pld-linux.org Git - packages/fluxbox.git/blame - fluxbox-0.1.9-bugfix2.patch
- Release 1 (seems finished)
[packages/fluxbox.git] / fluxbox-0.1.9-bugfix2.patch
CommitLineData
42b6b768 1diff -U 1 -r fluxbox-0.1.9/src/Window.cc fluxbox-0.1.9-bugfix2/src/Window.cc
2--- fluxbox-0.1.9/src/Window.cc Tue May 21 23:22:05 2002
3+++ fluxbox-0.1.9-bugfix2/src/Window.cc Mon Jun 3 19:12:23 2002
4@@ -295,4 +295,5 @@
5
6- //use tab? delayed this so that tabs wont "flicker" when creating windows
7- if (decorations.tab && fluxbox->useTabs())
8+ // use tab? and don't create a tab on windows that's not
9+ // maximizable as default (such as dialogs)
10+ if (decorations.tab && fluxbox->useTabs() && decorations.maximize)
11 tab = new Tab(this, 0, 0);
12@@ -435,3 +436,5 @@
13
14- if (client.window) {
15+ // Make sure we don't remove
16+ // a slit client from the list
17+ if (managed) {
18 fluxbox->removeWindowSearch(client.window);
19Only in fluxbox-0.1.9-bugfix2/src: Window.cc~
20diff -U 1 -r fluxbox-0.1.9/src/Workspace.cc fluxbox-0.1.9-bugfix2/src/Workspace.cc
21--- fluxbox-0.1.9/src/Workspace.cc Fri May 17 13:03:36 2002
22+++ fluxbox-0.1.9-bugfix2/src/Workspace.cc Mon Jun 3 19:11:51 2002
23@@ -24,3 +24,3 @@
24
25-// $Id$
26+// $Id$
27
28@@ -95,2 +95,3 @@
29 //if there isn't any window that's focused, just add it to the end of the list
30+ /*
31 if (focused == 0) {
32@@ -115,4 +116,6 @@
33 }
34-
35-
36+ */
37+ //add to list
38+ m_clientmenu.insert(w->getTitle().c_str());
39+ windowList.push_back(w);
40
This page took 0.074425 seconds and 4 git commands to generate.