diff options
author | simonb <simonb> | 2005-04-10 18:18:14 (GMT) |
---|---|---|
committer | simonb <simonb> | 2005-04-10 18:18:14 (GMT) |
commit | 88c66f0687d2a9e2018f22407b2587dc4d87d012 (patch) | |
tree | 197308ad2426783058f479d12329548c6a8a4374 /src/Container.cc | |
parent | 6cf66c66554a20a1c98eddf26af9e35b7c90cbd5 (diff) | |
download | fluxbox_pavel-88c66f0687d2a9e2018f22407b2587dc4d87d012.zip fluxbox_pavel-88c66f0687d2a9e2018f22407b2587dc4d87d012.tar.bz2 |
Big changes to how transparency works
Consequently rearrange lots of rendering ops, and strip calls to
updateTransparent
Diffstat (limited to 'src/Container.cc')
-rw-r--r-- | src/Container.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Container.cc b/src/Container.cc index 9e9952f..8e1d41c 100644 --- a/src/Container.cc +++ b/src/Container.cc | |||
@@ -132,7 +132,6 @@ void Container::removeAll() { | |||
132 | m_item_list.clear(); | 132 | m_item_list.clear(); |
133 | if (!m_update_lock) { | 133 | if (!m_update_lock) { |
134 | clear(); | 134 | clear(); |
135 | updateTransparent(); | ||
136 | } | 135 | } |
137 | 136 | ||
138 | } | 137 | } |
@@ -176,7 +175,6 @@ void Container::setAlignment(Container::Alignment a) { | |||
176 | void Container::exposeEvent(XExposeEvent &event) { | 175 | void Container::exposeEvent(XExposeEvent &event) { |
177 | if (!m_update_lock) { | 176 | if (!m_update_lock) { |
178 | clearArea(event.x, event.y, event.width, event.height); | 177 | clearArea(event.x, event.y, event.width, event.height); |
179 | updateTransparent(event.x, event.y, event.width, event.height); | ||
180 | } | 178 | } |
181 | } | 179 | } |
182 | 180 | ||