rim set to 0.

svn path=/trunk/kdebase/konsole/; revision=39261
This commit is contained in:
Lars Doelle
2000-01-26 01:17:31 +00:00
parent bfe712a941
commit ac6ee2c1db
2 changed files with 7 additions and 5 deletions

View File

@@ -4,6 +4,8 @@ CONTRIBUTORS. See ChangeLog also
- schema files seeked also in ~/.kde/share/apps/konsole
- vim.schema
- improved/fixed selections
- Lotzi Boloni <boloni@cs.purdue.edu>
- Fast switch between sessions with the same schema.
- Matthias Ettrich <ettrich@kde.org>
- most of main.C donated via kvt.
- rework of the session management
@@ -30,5 +32,3 @@ CONTRIBUTORS. See ChangeLog also
- decent marking
- Kevin Street <street@iname.com>
- FreeBSD port
- Lotzi Boloni <boloni@cs.purdue.edu>
- Fast switch between sessions with the same schema.

View File

@@ -66,8 +66,9 @@
#define loc(X,Y) ((Y)*columns+(X))
#define rimX 1 // left/right rim width
#define rimY 1 // top/bottom rim high
//FIXME: the rim should normally be 1, 0 only when running in full screen mode.
#define rimX 0 // left/right rim width
#define rimY 0 // top/bottom rim high
#define SCRWIDTH 16 // width of the scrollbar
@@ -943,7 +944,8 @@ void TEWidget::clearImage()
// Create Image ///////////////////////////////////////////////////////
void TEWidget::calcGeometry()
{
{
//FIXME: set rimX == rimY == 0 when running in full screen mode.
scrollbar->resize(QApplication::style().scrollBarExtent().width(),
contentsRect().height());