summaryrefslogtreecommitdiff
authorleseb <leseb>2002-07-07 16:07:13 (UTC)
committer leseb <leseb>2002-07-07 16:07:13 (UTC)
commita72877e867e70784e3c865fa2948ac40f72b5c39 (patch) (unidiff)
treead985b59d3658e80617bf820350488c674252e1f
parent72497e9298d84a711114bb49e3c9454fabca50db (diff)
downloadopie-a72877e867e70784e3c865fa2948ac40f72b5c39.zip
opie-a72877e867e70784e3c865fa2948ac40f72b5c39.tar.gz
opie-a72877e867e70784e3c865fa2948ac40f72b5c39.tar.bz2
Fix menu index for scrollbar position
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/apps/embeddedkonsole/konsole.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/apps/embeddedkonsole/konsole.cpp b/core/apps/embeddedkonsole/konsole.cpp
index 8b1e066..36b9b1e 100644
--- a/core/apps/embeddedkonsole/konsole.cpp
+++ b/core/apps/embeddedkonsole/konsole.cpp
@@ -806,15 +806,15 @@ void Konsole::scrollMenuSelected(int index)
806 Config cfg("Konsole"); 806 Config cfg("Konsole");
807 cfg.setGroup("ScrollBar"); 807 cfg.setGroup("ScrollBar");
808 switch( index){ 808 switch( index){
809 case -24: 809 case -25:
810 te->setScrollbarLocation(0); 810 te->setScrollbarLocation(0);
811 cfg.writeEntry("Position",0); 811 cfg.writeEntry("Position",0);
812 break; 812 break;
813 case -25: 813 case -26:
814 te->setScrollbarLocation(1); 814 te->setScrollbarLocation(1);
815 cfg.writeEntry("Position",1); 815 cfg.writeEntry("Position",1);
816 break; 816 break;
817 case -26: 817 case -27:
818 te->setScrollbarLocation(2); 818 te->setScrollbarLocation(2);
819 cfg.writeEntry("Position",2); 819 cfg.writeEntry("Position",2);
820 break; 820 break;