Description:
Update TODOs.
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
@@ -221,6 +221,7 | |||
|
221 | 221 | - Dialogs don't appear after |
|
222 | 222 | Misc: |
|
223 | 223 | - Events may not be deleted |
|
224 | - News window crashes. | |
|
224 | 225 | - Exits are messy (does Encompass add threading?) @done(2021-11-28) |
|
225 | 226 | Appears to be fixed by using Game.Exit |
|
226 | 227 | [xcb] Unknown sequence number while appending request |
@@ -259,19 +259,17 | |||
|
259 | 259 | SendMessage(new SpawnSelection {Start = CellMap.calculateMousegrid(original_point)}); |
|
260 | 260 | } |
|
261 | 261 | |
|
262 |
if ( mouseCur.LeftButton == ButtonState.Released && mousePrev.LeftButton == ButtonState.Pressed |
|
|
262 | if ( mouseCur.LeftButton == ButtonState.Released && mousePrev.LeftButton == ButtonState.Pressed) | |
|
263 | 263 | { |
|
264 | 264 | SendMessage(new AdjustSelection {Type = AdjustmentType.Complete }); |
|
265 | 265 | } |
|
266 | 266 | |
|
267 | 267 | if (mouseCur.LeftButton == ButtonState.Pressed && mousePrev.LeftButton == ButtonState.Pressed) |
|
268 | 268 | { |
|
269 |
SendMessage(new AdjustSelection { |
|
|
269 | SendMessage(new AdjustSelection {End = CellMap.calculateMousegrid(original_point)}); | |
|
270 | 270 | } |
|
271 | 271 | } |
|
272 | 272 | |
|
273 | ||
|
274 | ||
|
275 | 273 | #endregion |
|
276 | 274 | this.keyboardPrev = keyboardCur; |
|
277 | 275 | this.mousePrev = mouseCur; |
You need to be logged in to leave comments.
Login now