-
Notifications
You must be signed in to change notification settings - Fork 46
Keep osara preset list open #1323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 6 commits
06c2457
173e737
411131c
62d2459
c06a3f0
11370cf
97bcd1d
237ebd5
bc9403d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -750,15 +750,16 @@ When the MIDI Editor is set to Event List mode, REAPER presents a list with all | |
| When a note gets focus in the list, OSARA will play a preview of the focused note. | ||
| To cancel a note preview, press the Control key. | ||
|
|
||
| ### Navigating FX Presets Without Activating Them (Windows Only) | ||
| ### Searching and navigating FX Presets Without Activating Them (Windows Only) | ||
| REAPER's FX preset combo box doesn't allow keyboard users to move through presets without activating them. | ||
| Sometimes, you need to be able to examine or search the available presets without activating each one. | ||
| OSARA provides a dialog to facilitate this. | ||
|
|
||
| You activate this dialog by pressing Alt+DownArrow when focused on REAPER's FX preset combo box. | ||
| The dialog displays the preset list and allows you to navigate without presets being automatically activated. | ||
| The Filter field allows you to filter the list to show only presets containing the entered text. | ||
| Pressing the OK button activates the preset that's currently selected in the list. | ||
| The Filter field (Alt+F) allows you to filter the list to show only presets containing the entered text. | ||
| Pressing Enter while focus is in the list box or Alt+A to click the Apply button loads the selected preset. | ||
|
||
| Pressing Escape or Alt+C to click the Close button closes the dialog, clears the filter and returns keyboard focus to REAPER's FX preset combo box. | ||
|
|
||
| ### Configuration | ||
| OSARA provides a Configuration dialog to adjust various settings. | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -61,11 +61,12 @@ END | |
| ID_FX_PRESET_DLG DIALOGEX 250, 125, 200, 350 | ||
| CAPTION "FX Preset" | ||
| BEGIN | ||
| LTEXT "&Presets:", IDC_STATIC, 10, 0, 40, 10 | ||
|
Owner
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Note that even if we support control+space eventually, we wouldn't use this label because it's localised. I don't mind whether we keep this or not, but I thought I'd flag this in case it's the only reason you added the label here. |
||
| CONTROL "", ID_FXPRE_PRESET, "SysListView32", WS_TABSTOP | LVS_REPORT | LVS_SINGLESEL | LVS_SHOWSELALWAYS | LVS_NOCOLUMNHEADER, 10, 10, 180, 280 | ||
| LTEXT "Filter:", IDC_STATIC, 10, 300, 23, 10 | ||
| LTEXT "&Filter:", IDC_STATIC, 10, 300, 23, 10 | ||
| EDITTEXT ID_FXPRE_FILTER, 40, 300, 40, 10 | ||
| DEFPUSHBUTTON "&OK", IDOK, 10, 320, 40, 14 | ||
| PUSHBUTTON "&Cancel", IDCANCEL, 140, 320, 40, 14 | ||
| DEFPUSHBUTTON "&Apply", IDOK, 10, 320, 40, 14 | ||
| PUSHBUTTON "&Close", IDCANCEL, 140, 320, 40, 14 | ||
| END | ||
|
|
||
| ID_UPDATE_DLG DIALOGEX 250, 125, 500, 355 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Navigating should have a capital n, since we're using title case in the rest of this heading.