]> git.pld-linux.org Git - packages/fluxbox.git/commitdiff
- http://fluxbox.sourceforge.net/download/patches/fluxbox-0.1.9-bugfix2.patch
authorareq <areq@pld-linux.org>
Wed, 5 Jun 2002 14:51:33 +0000 (14:51 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
- bug [ 562882 ] "bbpager in slit doesn't work correctly". (a slit client bug)
- bug [ 562713 ] "incorrect listings in workspace menu".
- bug [ 554646 ] "Dialog boxes have tabs briefly".

Changed files:
    fluxbox-0.1.9-bugfix2.patch -> 1.1

fluxbox-0.1.9-bugfix2.patch [new file with mode: 0644]

diff --git a/fluxbox-0.1.9-bugfix2.patch b/fluxbox-0.1.9-bugfix2.patch
new file mode 100644 (file)
index 0000000..800d404
--- /dev/null
@@ -0,0 +1,40 @@
+diff -U 1 -r fluxbox-0.1.9/src/Window.cc fluxbox-0.1.9-bugfix2/src/Window.cc
+--- fluxbox-0.1.9/src/Window.cc        Tue May 21 23:22:05 2002
++++ fluxbox-0.1.9-bugfix2/src/Window.cc        Mon Jun  3 19:12:23 2002
+@@ -295,4 +295,5 @@
+-      //use tab? delayed this so that tabs wont "flicker" when creating windows
+-      if (decorations.tab && fluxbox->useTabs())
++      // use tab? and don't create a tab on windows that's not
++      // maximizable as default (such as dialogs)
++      if (decorations.tab && fluxbox->useTabs() && decorations.maximize)
+               tab = new Tab(this, 0, 0);
+@@ -435,3 +436,5 @@
+-      if (client.window) {
++      // Make sure we don't remove
++      // a slit client from the list
++      if (managed) {
+               fluxbox->removeWindowSearch(client.window);
+Only in fluxbox-0.1.9-bugfix2/src: Window.cc~
+diff -U 1 -r fluxbox-0.1.9/src/Workspace.cc fluxbox-0.1.9-bugfix2/src/Workspace.cc
+--- fluxbox-0.1.9/src/Workspace.cc     Fri May 17 13:03:36 2002
++++ fluxbox-0.1.9-bugfix2/src/Workspace.cc     Mon Jun  3 19:11:51 2002
+@@ -24,3 +24,3 @@
+-// $Id$
++// $Id$
+@@ -95,2 +95,3 @@
+       //if there isn't any window that's focused, just add it to the end of the list
++      /*
+       if (focused == 0) {
+@@ -115,4 +116,6 @@
+       }
+-      
+-      
++      */
++      //add to list
++      m_clientmenu.insert(w->getTitle().c_str());
++      windowList.push_back(w);
+       
This page took 0.038459 seconds and 4 git commands to generate.