| Summary: | kdialog --textbox should display first lane, not last line | ||
|---|---|---|---|
| Product: | [Applications] kdialog | Reporter: | Brad Hards <bhards> |
| Component: | general | Assignee: | David Faure <faure> |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | patch to set scroll to top | ||
|
Description
Brad Hards
2003-08-19 12:55:40 UTC
Created attachment 2277 [details]
patch to set scroll to top
OK, so its not much of a patch...
Subject: KDE_3_1_BRANCH: kdebase/kdialog CVS commit by faure: "kdialog --textbox should display first line, not last line" Fine with me. CCMAIL: 62958-done@bugs.kde.org M +2 -0 widgets.cpp 1.1.1.1.2.1 --- kdebase/kdialog/widgets.cpp #1.1.1.1:1.1.1.1.2.1 @@ -73,4 +73,6 @@ int Widgets::textBox(QWidget *parent, in edit->append(s.readLine()); + edit->moveCursor(QTextEdit::MoveHome, false); + f.close(); |