Change "resize to fit" shortcut to Meta+w

Meta+x will be used for CUT (cut text to clipboard).
This commit is contained in:
Romain Vimont
2020-05-29 23:00:21 +02:00
parent 9badd2bdf0
commit 567c5a7da7
4 changed files with 4 additions and 4 deletions

View File

@@ -363,7 +363,7 @@ input_manager_process_key(struct input_manager *im,
screen_switch_fullscreen(im->screen);
}
return;
case SDLK_x:
case SDLK_w:
if (!shift && !repeat && down) {
screen_resize_to_fit(im->screen);
}