Skip to content

Commit fb1d1f9

Browse files
committed
fix cmd + , opening config file twice
1 parent 010e8ec commit fb1d1f9

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/app/tile.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,8 +186,6 @@ impl Tile {
186186
keyboard::Key::Character(chr) => {
187187
if modifiers.command() && chr.to_string() == "r" {
188188
return Some(Message::ReloadConfig);
189-
} else if modifiers.command() && chr.to_string() == "," {
190-
open_settings();
191189
} else if chr.to_string() == "p" && modifiers.control() {
192190
return Some(Message::ChangeFocus(ArrowKey::Up, 1));
193191
} else if chr.to_string() == "n" && modifiers.control() {

0 commit comments

Comments
 (0)