[Kst] [Bug 143602] Using Advance 1 Screen sometimes jumps to wrong position
Andrew Walker
arwalker at sumusltd.com
Thu Apr 12 20:04:46 CEST 2007
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=143602
arwalker sumusltd com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From arwalker sumusltd com 2007-04-12 20:04 -------
SVN commit 653144 by arwalker:
BUG:143602 Correctly handle 'advance one screen' when in 'read to end' mode
M +5 -1 kstdoc.cpp
--- branches/work/kst/1.5/kst/src/libkstapp/kstdoc.cpp #653143:653144
@ -889,7 +889,11 @
int fileN = V->fileLength();
bool didChange = false;
- if (f0 + 2 * n > fileN) {
+
+ if (f0 == -1) {
+ didChange = true;
+ f0 = fileN - n;
+ } else if (f0 + 2 * n > fileN) {
didChange = f0 != fileN - n;
changed = changed || didChange;
f0 = fileN - n;
More information about the Kst
mailing list