mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-25 13:55:34 -05:00
Also respond to dead Grave for casesensitive toggle.
This commit is contained in:
parent
46ab505be7
commit
deee786c65
1 changed files with 1 additions and 1 deletions
|
@ -1637,7 +1637,7 @@ MenuReturn menu ( char **lines, unsigned int num_lines, char **input, char *prom
|
|||
break;
|
||||
}
|
||||
// Toggle case sensitivity.
|
||||
else if ( key == XK_grave ) {
|
||||
else if ( key == XK_grave || key == XK_dead_grave ) {
|
||||
config.case_sensitive = !config.case_sensitive;
|
||||
*( state.selected_line ) = 0;
|
||||
state.refilter = TRUE;
|
||||
|
|
Loading…
Reference in a new issue