Commit 5cf2736a authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Disable stdin control in multiwindow mode

As there's no "default" window, it doesn't make much sense here...
Plus, it's buggy as hell in this mode
parent 3b53d965
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -111,7 +111,7 @@ int feh_main_iteration(int block)
		fdsize = xfd + 1;
		pt = feh_get_time();
		first = 0;
		if (isatty(STDIN_FILENO)) {
		if (isatty(STDIN_FILENO) && !opt.multiwindow) {
			control_via_stdin = 1;
			struct termios ctrl;
			if (tcgetattr(STDIN_FILENO, &old_term_settings) == -1)