Skip to content

Commit

Permalink
FIX: mark window title of new top window dirty
Browse files Browse the repository at this point in the history
git-svn-id: svn://tron.homeunix.org/simutrans/simutrans/trunk@3626 8aca7d54-2c30-db11-9de9-000461428c89
  • Loading branch information
Dwachs committed Aug 7, 2010
1 parent deaafbe commit f043fbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simwin.cc
Original file line number Diff line number Diff line change
Expand Up @@ -604,8 +604,8 @@ int top_win(int win)
wins.append(tmp);

// mark new dirty
koord gr = wins[win].gui->get_fenstergroesse();
mark_rect_dirty_wc( wins[win].pos.x, wins[win].pos.y, wins[win].pos.x+gr.x, wins[win].pos.y+gr.y );
koord gr = wins.back().gui->get_fenstergroesse();
mark_rect_dirty_wc( wins.back().pos.x, wins.back().pos.y, wins.back().pos.x+gr.x, wins.back().pos.y+gr.y );

event_t ev;

Expand Down

0 comments on commit f043fbf

Please sign in to comment.