1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-01-27 15:25:24 -05:00

Merge remote-tracking branch 'origin/master' into glib-loop

This commit is contained in:
Dave Davenport 2016-01-25 20:46:11 +01:00
commit f42258f60a
2 changed files with 2 additions and 2 deletions

View file

@ -1442,7 +1442,7 @@ static void menu_mainloop_iter ( MenuState *state, XEvent *ev )
}
else{
// Nothing entered and nothing selected.
state->retv = MENU_CANCEL;
state->retv = MENU_CUSTOM_INPUT;
}
if ( shift ) {
state->retv |= MENU_SHIFT;

View file

@ -8,7 +8,7 @@ xdotool key Return
wait ${RPID}
RETV=$?
if [ ${RETV} -eq 1 ]
if [ ${RETV} -eq 0 ]
then
exit 0
else