Debug comments

This commit is contained in:
Loic Guegan 2023-01-02 11:58:40 +01:00
parent d1c1031332
commit 042f6ca170
2 changed files with 8 additions and 1 deletions

View file

@ -89,7 +89,12 @@ void GameTabRightPanel::OnCommentChange(wxCommandEvent &event) {
wxLogDebug("GameTabRightPanel: comment input change");
HalfMove *m = game->GetCurrentMove();
if (m != nullptr) {
m->comment=event.GetString().ToStdString();
m->comment=event.GetString().Trim().ToStdString();
// Remove newlines:
for(char &c:m->comment){
if(c=='\n')
c=' ';
}
}
editor_canvas->Refresh();
}

View file

@ -1,3 +1,5 @@
#include <algorithm>
#include "../Game.hpp"
#include "LiveEngineDialog.hpp"
#include "editor/EditorCanvas.hpp"