mirror of
https://github.com/lbonn/rofi
synced 2024-11-15 00:27:36 +00:00
Fix missing equals
This commit is contained in:
parent
1b5bcaa9f4
commit
0fb7258470
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ static int add_mode ( const char * token )
|
|||
modi[num_modi] = &ssh_mode;
|
||||
num_modi++;
|
||||
}
|
||||
else if ( strcasecmp ( token, mode_get_name ( &help_keys_mode ) ) ) {
|
||||
else if ( strcasecmp ( token, mode_get_name ( &help_keys_mode ) ) == 0 ) {
|
||||
modi[num_modi] = &help_keys_mode;
|
||||
num_modi++;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue