From ac6ee2c1db4e0024028ce137125cc28b5329c157 Mon Sep 17 00:00:00 2001 From: Lars Doelle Date: Wed, 26 Jan 2000 01:17:31 +0000 Subject: [PATCH] rim set to 0. svn path=/trunk/kdebase/konsole/; revision=39261 --- CONTRIBUTORS | 4 ++-- src/TEWidget.C | 8 +++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 3a1540cc2..7e6e28c54 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -4,6 +4,8 @@ CONTRIBUTORS. See ChangeLog also - schema files seeked also in ~/.kde/share/apps/konsole - vim.schema - improved/fixed selections +- Lotzi Boloni + - Fast switch between sessions with the same schema. - Matthias Ettrich - most of main.C donated via kvt. - rework of the session management @@ -30,5 +32,3 @@ CONTRIBUTORS. See ChangeLog also - decent marking - Kevin Street - FreeBSD port -- Lotzi Boloni - - Fast switch between sessions with the same schema. diff --git a/src/TEWidget.C b/src/TEWidget.C index f1dcde101..97de4df72 100644 --- a/src/TEWidget.C +++ b/src/TEWidget.C @@ -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());