mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-29 08:23:01 +01:00
fix cast warning
This commit is contained in:
parent
cd4aaa808e
commit
b01632356d
1 changed files with 1 additions and 1 deletions
|
|
@ -4466,7 +4466,7 @@ bool
|
|||
RCOptionEditor::on_key_release_event (GdkEventKey* event)
|
||||
{
|
||||
if (Keyboard::modifier_state_equals (event->state, Keyboard::close_window_modifier)) {
|
||||
if (event->keyval == Keyboard::close_window_key) {
|
||||
if (event->keyval == (guint) Keyboard::close_window_key) {
|
||||
WindowProxy::hide ();
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue