mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 10:06:29 +02:00
Improve UI
This commit is contained in:
parent
4a9523f9df
commit
7ea1e6dc2a
2 changed files with 7 additions and 1 deletions
1
TODO.md
1
TODO.md
|
@ -16,6 +16,7 @@
|
||||||
- [x] Update PGNP to last commit
|
- [x] Update PGNP to last commit
|
||||||
- [x] Remove duplicated variations (currently if variation is played more than once it is added anyway to the move list)
|
- [x] Remove duplicated variations (currently if variation is played more than once it is added anyway to the move list)
|
||||||
- [ ] Debug the Preference window on OS X (GetIcon() must be overridden)
|
- [ ] Debug the Preference window on OS X (GetIcon() must be overridden)
|
||||||
|
- [ ] When MainWindow is resized, the chess move editor scroll get broken if it was in used(It is not related to CGEditor, looks like some resize events are not properly handled)
|
||||||
- [ ] When OChess preferences are changed, they are not applied on the openned tabs (only on OS X)
|
- [ ] When OChess preferences are changed, they are not applied on the openned tabs (only on OS X)
|
||||||
|
|
||||||
## Additional Features
|
## Additional Features
|
||||||
|
|
|
@ -183,8 +183,13 @@ void EditorCanvas::MouseEvent(wxMouseEvent &event) {
|
||||||
void EditorCanvas::SetMoves(HalfMove *moves, HalfMove *current) {
|
void EditorCanvas::SetMoves(HalfMove *moves, HalfMove *current) {
|
||||||
CGEditor::status.Moves = moves;
|
CGEditor::status.Moves = moves;
|
||||||
CGEditor::status.CurrentMove = current;
|
CGEditor::status.CurrentMove = current;
|
||||||
|
|
||||||
Refresh();
|
Refresh();
|
||||||
|
// Focus on current move:
|
||||||
|
if(current!=nullptr){
|
||||||
|
Update(); // Wait for preview call to Refresh() to finish (otherwise heisenbugs)
|
||||||
|
CGEditor::FocusOnMove(current);
|
||||||
|
Refresh();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void EditorCanvas::ApplyPreferences(){
|
void EditorCanvas::ApplyPreferences(){
|
||||||
|
|
Loading…
Add table
Reference in a new issue