mirror of
https://github.com/KDE/konsole.git
synced 2026-05-07 22:26:17 -04:00
Add profile option to scroll full/half height via Page Up/Down keys
The default is still half page - there is no GUI to change this; either use konsoleprofile or change the .profile manually. CCBUG: 280637
This commit is contained in:
@@ -87,6 +87,7 @@ const Profile::PropertyInfo Profile::DefaultPropertyNames[] = {
|
||||
, { HistoryMode , "HistoryMode" , SCROLLING_GROUP , QVariant::Int }
|
||||
, { HistorySize , "HistorySize" , SCROLLING_GROUP , QVariant::Int }
|
||||
, { ScrollBarPosition , "ScrollBarPosition" , SCROLLING_GROUP , QVariant::Int }
|
||||
, { ScrollFullPage , "ScrollFullPage" , SCROLLING_GROUP , QVariant::Bool }
|
||||
|
||||
// Terminal Features
|
||||
, { BlinkingTextEnabled , "BlinkingTextEnabled" , TERMINAL_GROUP , QVariant::Bool }
|
||||
@@ -169,6 +170,7 @@ FallbackProfile::FallbackProfile()
|
||||
setProperty(HistoryMode, Enum::FixedSizeHistory);
|
||||
setProperty(HistorySize, 1000);
|
||||
setProperty(ScrollBarPosition, Enum::ScrollBarRight);
|
||||
setProperty(ScrollFullPage, false);
|
||||
|
||||
setProperty(FlowControlEnabled, true);
|
||||
setProperty(BlinkingTextEnabled, true);
|
||||
|
||||
Reference in New Issue
Block a user