diff options
author | Mark Tiefenbruck <mark@fluxbox.org> | 2008-10-01 08:38:56 (GMT) |
---|---|---|
committer | Mark Tiefenbruck <mark@fluxbox.org> | 2008-10-01 08:38:56 (GMT) |
commit | 269459e1aa0a8c0ab9be67cf11bb836ecc191f31 (patch) | |
tree | 09fa57effb9f6c0b6f6456a11a6ce2b45d1c66f0 /src/FbTk/Layer.hh | |
parent | b3da022ee22acd67f6ef6210e7412dbfc8fdfa70 (diff) | |
download | fluxbox_lack-269459e1aa0a8c0ab9be67cf11bb836ecc191f31.zip fluxbox_lack-269459e1aa0a8c0ab9be67cf11bb836ecc191f31.tar.bz2 |
don't flash original window in the middle of cycling focus
Diffstat (limited to 'src/FbTk/Layer.hh')
-rw-r--r-- | src/FbTk/Layer.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FbTk/Layer.hh b/src/FbTk/Layer.hh index 405285c..b9257c3 100644 --- a/src/FbTk/Layer.hh +++ b/src/FbTk/Layer.hh | |||
@@ -43,7 +43,6 @@ public: | |||
43 | virtual void raise(ItemType &item); | 43 | virtual void raise(ItemType &item); |
44 | /// move item to bottom | 44 | /// move item to bottom |
45 | virtual void lower(ItemType &item); | 45 | virtual void lower(ItemType &item); |
46 | virtual void restack(); | ||
47 | /// @return layer item on specific position, on failure 0 | 46 | /// @return layer item on specific position, on failure 0 |
48 | ItemType *getItem(unsigned int position); | 47 | ItemType *getItem(unsigned int position); |
49 | /// @return number of elements in layer | 48 | /// @return number of elements in layer |
@@ -52,6 +51,8 @@ public: | |||
52 | const ListType &itemList() const { return m_list; } | 51 | const ListType &itemList() const { return m_list; } |
53 | /// @return layer list | 52 | /// @return layer list |
54 | ListType &itemList() { return m_list; } | 53 | ListType &itemList() { return m_list; } |
54 | protected: | ||
55 | virtual void restack(); | ||
55 | private: | 56 | private: |
56 | ListType m_list; | 57 | ListType m_list; |
57 | }; | 58 | }; |