diff options
author | rathnor <rathnor> | 2003-02-02 16:32:41 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2003-02-02 16:32:41 (GMT) |
commit | 1b063dcea92e0a7ac5008518fc5c13f03c055f54 (patch) | |
tree | 29d5b622c0870f06a94086ed463ab90e23bc673e /src/Tab.cc | |
parent | 5244fc32447d2649a52a06dc84d96da94e9fd715 (diff) | |
download | fluxbox-1b063dcea92e0a7ac5008518fc5c13f03c055f54.zip fluxbox-1b063dcea92e0a7ac5008518fc5c13f03c055f54.tar.bz2 |
Integration of new Layering code, plus updates to the layering code itself
- new KeyActions: Raise/LowerLayer, AlwaysOnTop/Bottom, Top/BottomLayer
Added a "Quit" KeyAction
Diffstat (limited to 'src/Tab.cc')
-rw-r--r-- | src/Tab.cc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: Tab.cc,v 1.52 2003/01/12 18:31:33 fluxgen Exp $ | 22 | // $Id: Tab.cc,v 1.53 2003/02/02 16:32:38 rathnor Exp $ |
23 | 23 | ||
24 | #include "Tab.hh" | 24 | #include "Tab.hh" |
25 | 25 | ||
@@ -173,7 +173,7 @@ void Tab::lower() { | |||
173 | do { | 173 | do { |
174 | XLowerWindow(m_display, current->m_tabwin); //lower tabwin and tabs window | 174 | XLowerWindow(m_display, current->m_tabwin); //lower tabwin and tabs window |
175 | win = current->getWindow(); | 175 | win = current->getWindow(); |
176 | win->getScreen()->getWorkspace(win->getWorkspaceNumber())->lowerWindow(win); | 176 | win->getScreen()->lowerWindow(win); |
177 | 177 | ||
178 | current = current->next(); //get next | 178 | current = current->next(); //get next |
179 | if (current == 0) | 179 | if (current == 0) |