Bug 63214 - Brake long lines in chat widget
Summary: Brake long lines in chat widget
Status: CONFIRMED
Alias: None
Product: libkdegames
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: unspecified
Platform: Compiled Sources Linux
: NOR wishlist
Target Milestone: ---
Assignee: Andreas Beckermann
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-08-24 23:25 UTC by Rivo Laks
Modified: 2007-11-07 14:40 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Rivo Laks 2003-08-24 23:25:10 UTC
Version:            (using KDE KDE 3.1.3)
Installed from:    Compiled From Sources

Long lines should be broken in KGameChat. ATM their partially not visible and there's no horizontal scrollbar either.

Rivo
Comment 1 icefox 2003-09-15 02:01:55 UTC
in kchatbase.cpp line 212 would removing these two lines fix it sense they 
would then be set to QScrollView::Auto by default? 
 d->mBox->setVScrollBarMode(QScrollView::AlwaysOn); 
 d->mBox->setHScrollBarMode(QScrollView::AlwaysOff); 
Comment 2 Andreas Beckermann 2003-09-15 03:06:53 UTC
No. See 
http://lists.kde.org/?l=kde-games-devel&m=106354702017574&w=2 
same reason. 
 
Removing  
 d->mBox->setVScrollBarMode(QScrollView::AlwaysOn);  
is not an option anyway, removing 
 d->mBox->setHScrollBarMode(QScrollView::AlwaysOff); 
might be a workaround for this problem (but not a solution). 
 
CU 
Andi