-
I'm wondering how to let a footer menu play nicely together with a input widget. My main app screen has a input widget in the center of the screen as a main entry point (like search bar). In the footer are a couple of bindings, like the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I'm a little confused by your question; you seem to be saying that you want the user to be able to press v and have it run the action that pops up the version screen, but you also want them to be able to type a "v" in the These things seem mutually exclusive. Could you clarify that? More generally though: this is a reason why it would generally be a bad idea to bind a letter or number key, app-wide, to some action. It would normally make more sense to bind a key with a modifier; Ctrl+v for the version screen, perhaps, or even simply a function key? |
Beta Was this translation helpful? Give feedback.
I'm a little confused by your question; you seem to be saying that you want the user to be able to press v and have it run the action that pops up the version screen, but you also want them to be able to type a "v" in the
Input
, but you also don't want them to have to move focus out of theInput
to do this.These things seem mutually exclusive.
Could you clarify that?
More generally though: this is a reason why it would generally be a bad idea to bind a letter or number key, app-wide, to some action. It would normally make more sense to bind a key with a modifier; Ctrl+v for the version screen, perhaps, or even simply a function key?