View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0004726 | ardour | features | public | 2012-02-15 11:09 | 2012-05-31 21:31 |
| Reporter | emem | Assigned To | cth103 | ||
| Priority | normal | Severity | feature | Reproducibility | N/A |
| Status | closed | Resolution | fixed | ||
| Product Version | 3.0-beta3 | ||||
| Target Version | 3.0 | ||||
| Summary | 0004726: Knobs in the module "Monitor" - keyboard shortcuts | ||||
| Description | The mixer and the following logic editor keyboard shortcuts / mouse clicks: [Ctrl] + [Left Click] - "fade to-inf" [Ctrl] + [Shift] + [Left Click] - "fade to 0dB" [Mouse Wheel] - "fade + /-0.8dB" [Ctrl] + [Mouse Wheel] - "fade + / - 0.2dB" It is a well-designed and logical. The module "monitor" is different. [Home] - "knob up," [End] - "knob min", [Shift] + [Left Click] - "0 dB" or "knob min" (depending on the dial), [Page Down] - "knob right (?) "... I suggest to adjust the monitor to the Convention, the logic of the other elements of ardor. | ||||
| Tags | No tags attached. | ||||
|
2012-03-05 21:30
|
ardour.monitor.patch (1,078 bytes)
--- libs/gtkmm2ext/motionfeedback.cc (revision 11597)
+++ libs/gtkmm2ext/motionfeedback.cc (new wersion)
@@ -184,6 +184,10 @@
/* shift click back to the default */
_controllable->set_value (default_value);
return true;
+ } else if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)){
+ /* ctrl click back to the min value*/
+ _controllable->set_value (_controllable->lower());
+ return true;
}
break;
@@ -194,6 +198,11 @@
(GTK_WIDGET(pixwin.gobj()));
}
}
+ if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)){
+ /* ctrl click back to the min value*/
+ _controllable->set_value (_controllable->upper());
+ return true;
+ }
break;
}
|
|
|
patch adds to monitor the functionality of knobs: [CTRL] + left click -> min value [CTRL] + right click -> max value |
|
|
I've applied the first part of the patch to SVN 12511. Not too convinced about the ctrl-right-click to go to the maximum value, since it doesn't happen in the mixer and it has the potential to make a very loud output happen. Leave a note on this bug if you feel strongly about it. Thanks for the patch! |
|
|
You're right about the ctrl-right-click. Thank you for the improvement. |
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2012-02-15 11:09 | emem | New Issue | |
| 2012-02-23 16:43 | cth103 | cost | => 0.00 |
| 2012-02-23 16:43 | cth103 | Target Version | => 3.0 beta4 |
| 2012-03-05 21:30 | emem | File Added: ardour.monitor.patch | |
| 2012-03-05 21:33 | emem | Note Added: 0012863 | |
| 2012-03-05 21:34 | emem | Note Edited: 0012863 | |
| 2012-05-23 15:09 | cth103 | Target Version | 3.0 beta4 => 3.0 |
| 2012-05-31 18:05 | cth103 | Note Added: 0013336 | |
| 2012-05-31 18:05 | cth103 | Status | new => resolved |
| 2012-05-31 18:05 | cth103 | Resolution | open => fixed |
| 2012-05-31 18:05 | cth103 | Assigned To | => cth103 |
| 2012-05-31 21:31 | emem | Note Added: 0013339 | |
| 2012-05-31 21:31 | emem | Status | resolved => closed |