Skip to content

Commit de958da

Browse files
committed
Disable FX browser -> Options menu -> Show in FX list -> Plug-in type prefixes in optimal REAPER configuration. Fixes #1153.
1 parent 4fda4fc commit de958da

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/config.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ struct ReaperSetting {
219219
};
220220
// If any settings are added, changed or removed below, this number should be
221221
// increased.
222-
constexpr int REAPER_OPTIMAL_CONFIG_VERSION = 2;
222+
constexpr int REAPER_OPTIMAL_CONFIG_VERSION = 3;
223223
const char KEY_REAPER_OPTIMAL_CONFIG_VERSION[] = "reaperOptimalConfigVersion";
224224

225225
#ifdef _WIN32
@@ -257,6 +257,7 @@ INT_PTR CALLBACK configReaperOptimal_dialogProc(HWND dialog, UINT msg,
257257
<< nl << translate_ctxt("optimal REAPER configuration", "4. Enable the space key to be used for check boxes and buttons in various windows, wherever that's more convenient than space playing the project.")
258258
<< nl << translate_ctxt("optimal REAPER configuration", "5. Show text labels to indicate parallel, offline and bypassed in the FX list.")
259259
<< nl << translate_ctxt("optimal REAPER configuration", "6. Use a standard, accessible edit control for the video code editor.")
260+
<< nl << translate_ctxt("optimal REAPER configuration", "7. Hide type prefixes in the FX browser so that browsing through FX is more efficient.")
260261
<< nl << translate_ctxt("optimal REAPER configuration", "Note: if now isn't a good time to tweak REAPER, you can apply these adjustments later by going to the Extensions menu in the menu bar and then the OSARA submenu.")
261262
<< nl;
262263
HWND text = GetDlgItem(dialog, ID_CFGOPT_TEXT);
@@ -306,6 +307,8 @@ void cmdConfigReaperOptimal(Command* command) {
306307
{"REAPER", "fxfloat_focus", 1 << 20, 1048579},
307308
// Prefs -> Video: Use standard edit control for video code editor (for accessibility, lacks many features)
308309
{"REAPER", "video_colorspace", 1 << 11, 789507},
310+
// Disable FX browser -> Options menu -> Show in FX list -> Plug-in type prefixes
311+
{"REAPER-fxadd", "uiflags", 1 << 24, 16777216},
309312
};
310313
for (const auto& setting: settings) {
311314
int newVal = setting.value;

0 commit comments

Comments
 (0)