1
0
Fork 0

(svn r22246) -Fix: Process order window invalidations for specific orders in command-scope.

release/1.2
frosch 2011-03-13 21:33:57 +00:00
parent dd20823277
commit 5689b3dbda
2 changed files with 4 additions and 2 deletions

View File

@ -835,8 +835,9 @@ public:
break;
default:
if (!gui_scope) break;
if (data < 0) break;
if (gui_scope) break; // only do this once; from command scope
from = GB(data, 0, 8);
to = GB(data, 8, 8);
/* Moving an order. If one of these is INVALID_VEH_ORDER_ID, then

View File

@ -271,7 +271,8 @@ struct TimetableWindow : Window {
break;
default: {
if (!gui_scope) break;
if (gui_scope) break; // only do this once; from command scope
/* Moving an order. If one of these is INVALID_VEH_ORDER_ID, then
* the order is being created / removed */
if (this->sel_index == -1) break;