aboutsummaryrefslogtreecommitdiff
path: root/src/IconBar.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-12-09 19:03:13 (GMT)
committerfluxgen <fluxgen>2002-12-09 19:03:13 (GMT)
commitbf6662921e99eee4765ae98b4994837f91f11016 (patch)
treec1a6b6594a4220d4ad77a144251fb937f2592cd8 /src/IconBar.cc
parentf758ee4bbd4785c65c838a12507e3f6f5f63d210 (diff)
downloadfluxbox-bf6662921e99eee4765ae98b4994837f91f11016.zip
fluxbox-bf6662921e99eee4765ae98b4994837f91f11016.tar.bz2
don't rotate text in iconbar, until we can set it vertical
Diffstat (limited to 'src/IconBar.cc')
-rw-r--r--src/IconBar.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/IconBar.cc b/src/IconBar.cc
index aeef15d..2cad76a 100644
--- a/src/IconBar.cc
+++ b/src/IconBar.cc
@@ -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: IconBar.cc,v 1.21 2002/12/01 13:41:57 rathnor Exp $ 22// $Id: IconBar.cc,v 1.22 2002/12/09 19:03:13 fluxgen Exp $
23 23
24#include "IconBar.hh" 24#include "IconBar.hh"
25#include "i18n.hh" 25#include "i18n.hh"
@@ -300,7 +300,8 @@ void IconBar::draw(const IconBarObj * const obj, int width) const {
300 m_screen->getScreenNumber(), 300 m_screen->getScreenNumber(),
301 m_screen->getWindowStyle()->tab.l_text_focus_gc, 301 m_screen->getWindowStyle()->tab.l_text_focus_gc,
302 fluxboxwin->getIconTitle().c_str(), dlen, 302 fluxboxwin->getIconTitle().c_str(), dlen,
303 dx, 1+ m_screen->getWindowStyle()->tab.font.ascent()); 303 dx, 1+ m_screen->getWindowStyle()->tab.font.ascent(),
304 false);
304 305
305} 306}
306 307