diff options
Diffstat (limited to 'src/Container.cc')
-rw-r--r-- | src/Container.cc | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/Container.cc b/src/Container.cc index 5d07552..d329052 100644 --- a/src/Container.cc +++ b/src/Container.cc | |||
@@ -20,7 +20,7 @@ | |||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
21 | // DEALINGS IN THE SOFTWARE. | 21 | // DEALINGS IN THE SOFTWARE. |
22 | 22 | ||
23 | // $Id: Container.cc,v 1.14 2004/05/04 14:33:37 rathnor Exp $ | 23 | // $Id: Container.cc,v 1.15 2004/06/16 15:38:19 rathnor Exp $ |
24 | 24 | ||
25 | #include "Container.hh" | 25 | #include "Container.hh" |
26 | 26 | ||
@@ -160,10 +160,7 @@ void Container::setSelected(int pos) { | |||
160 | for (; pos != 0; --pos, ++it) | 160 | for (; pos != 0; --pos, ++it) |
161 | continue; | 161 | continue; |
162 | m_selected = *it; | 162 | m_selected = *it; |
163 | if (m_selected) { | 163 | // caller does any graphics stuff if appropriate |
164 | m_selected->clear(); | ||
165 | m_selected->updateTransparent(); | ||
166 | } | ||
167 | } | 164 | } |
168 | 165 | ||
169 | } | 166 | } |
@@ -218,8 +215,7 @@ void Container::repositionItems() { | |||
218 | -borderW, | 215 | -borderW, |
219 | max_width_per_client + extra, | 216 | max_width_per_client + extra, |
220 | height()); | 217 | height()); |
221 | (*it)->clear(); | 218 | // moveresize does a clear |
222 | (*it)->updateTransparent(); | ||
223 | } | 219 | } |
224 | 220 | ||
225 | } | 221 | } |