Move raid scrolling settings next to scrolling setting
This commit is contained in:
36
Settings.cs
36
Settings.cs
@@ -202,6 +202,24 @@ namespace UIFixes
|
|||||||
new AcceptableValueRange<int>(1, 10),
|
new AcceptableValueRange<int>(1, 10),
|
||||||
new ConfigurationManagerAttributes { })));
|
new ConfigurationManagerAttributes { })));
|
||||||
|
|
||||||
|
configEntries.Add(UseRaidMouseScrollMulti = config.Bind(
|
||||||
|
InputSection,
|
||||||
|
"Use Different Scrolling Speed in Raid",
|
||||||
|
false,
|
||||||
|
new ConfigDescription(
|
||||||
|
"Whether to use a separate mousewheel scroll speed in raid",
|
||||||
|
null,
|
||||||
|
new ConfigurationManagerAttributes { IsAdvanced = true })));
|
||||||
|
|
||||||
|
configEntries.Add(MouseScrollMultiInRaid = config.Bind(
|
||||||
|
InputSection,
|
||||||
|
"Mousewheel Scrolling Speed in Raid",
|
||||||
|
1,
|
||||||
|
new ConfigDescription(
|
||||||
|
"A separate mousewheel scroll speed for in raid",
|
||||||
|
new AcceptableValueRange<int>(1, 10),
|
||||||
|
new ConfigurationManagerAttributes { IsAdvanced = true })));
|
||||||
|
|
||||||
configEntries.Add(InspectKeyBind = config.Bind(
|
configEntries.Add(InspectKeyBind = config.Bind(
|
||||||
InputSection,
|
InputSection,
|
||||||
"Inspect Shortcut",
|
"Inspect Shortcut",
|
||||||
@@ -283,24 +301,6 @@ namespace UIFixes
|
|||||||
null,
|
null,
|
||||||
new ConfigurationManagerAttributes { })));
|
new ConfigurationManagerAttributes { })));
|
||||||
|
|
||||||
configEntries.Add(UseRaidMouseScrollMulti = config.Bind(
|
|
||||||
InputSection,
|
|
||||||
"Use Different Scrolling Speed in Raid",
|
|
||||||
false,
|
|
||||||
new ConfigDescription(
|
|
||||||
"Change PageUp and PageDown to scroll up and down one page",
|
|
||||||
null,
|
|
||||||
new ConfigurationManagerAttributes { IsAdvanced = true })));
|
|
||||||
|
|
||||||
configEntries.Add(MouseScrollMultiInRaid = config.Bind(
|
|
||||||
InputSection,
|
|
||||||
"Mousewheel Scrolling Speed in Raid",
|
|
||||||
1,
|
|
||||||
new ConfigDescription(
|
|
||||||
"A separate mousewheel scroll speed for in raid.",
|
|
||||||
new AcceptableValueRange<int>(1, 10),
|
|
||||||
new ConfigurationManagerAttributes { IsAdvanced = true })));
|
|
||||||
|
|
||||||
configEntries.Add(ItemContextBlocksTextInputs = config.Bind(
|
configEntries.Add(ItemContextBlocksTextInputs = config.Bind(
|
||||||
InputSection,
|
InputSection,
|
||||||
"Block Text Inputs on Item Mouseover",
|
"Block Text Inputs on Item Mouseover",
|
||||||
|
|||||||
Reference in New Issue
Block a user