-rw-r--r-- | core/apps/embeddedkonsole/TEWidget.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/core/apps/embeddedkonsole/TEWidget.cpp b/core/apps/embeddedkonsole/TEWidget.cpp index c220e11..23720cd 100644 --- a/core/apps/embeddedkonsole/TEWidget.cpp +++ b/core/apps/embeddedkonsole/TEWidget.cpp @@ -1198,13 +1198,17 @@ void TEWidget::calcGeometry() if(showhscrollbar == 1) { hScrollbar->resize(contentsRect().width() - hwidth, hwidth); hScrollbar->setRange(0, vcolumns - dcolumns); QPoint p = contentsRect().bottomLeft(); - hScrollbar->move(QPoint(p.x(), p.y() - hwidth)); + if(scrollLoc == SCRLEFT) + hScrollbar->move(QPoint(p.x()+hwidth, p.y() - hwidth)); + else + hScrollbar->move(QPoint(p.x(), p.y() - hwidth)); + hScrollbar->show(); } else hScrollbar->hide(); if(showhscrollbar == 1) { lines = lines - (hwidth / font_h) - 1; |