Bug 63214

Summary: Brake long lines in chat widget
Product: [Frameworks and Libraries] libkdegames Reporter: Rivo Laks <rivolaks>
Component: generalAssignee: Andreas Beckermann <b_mann>
Status: CONFIRMED ---    
Severity: wishlist    
Priority: NOR    
Version: unspecified   
Target Milestone: ---   
Platform: Compiled Sources   
OS: Linux   
Latest Commit: Version Fixed In:

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