summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaakko Keränen <jaakko.keranen@iki.fi>2020-12-27 19:16:38 +0200
committerJaakko Keränen <jaakko.keranen@iki.fi>2020-12-27 19:16:38 +0200
commite8b9d34565824b526aa48a28699781b486e897b6 (patch)
treeaa2ba3d88f40fd81a7c46fbc3321ee4e4b0ba19f
parent9df93a3686a26fc2c27a21b6959c016b42578b39 (diff)
SidebarWidget: Fixed editing identity notes
-rw-r--r--res/about/version.gmi3
-rw-r--r--src/ui/sidebarwidget.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/res/about/version.gmi b/res/about/version.gmi
index 153882c7..a81dcfa9 100644
--- a/res/about/version.gmi
+++ b/res/about/version.gmi
@@ -6,6 +6,9 @@
6``` 6```
7# Release notes 7# Release notes
8 8
9## 1.0.2
10* Fixed editing identity notes. The entered new notes were not being applied.
11
9## 1.0.1 12## 1.0.1
10* Fixed percent-encoding of the query string. 13* Fixed percent-encoding of the query string.
11* Fixed cursor positioning in input fields. 14* Fixed cursor positioning in input fields.
diff --git a/src/ui/sidebarwidget.c b/src/ui/sidebarwidget.c
index 6adf1d1b..406ce2f2 100644
--- a/src/ui/sidebarwidget.c
+++ b/src/ui/sidebarwidget.c
@@ -898,7 +898,7 @@ static iBool processEvent_SidebarWidget_(iSidebarWidget *d, const SDL_Event *ev)
898 uiHeading_ColorEscape "IDENTITY NOTES", 898 uiHeading_ColorEscape "IDENTITY NOTES",
899 format_CStr("Notes about %s:", cstr_String(name_GmIdentity(ident))), 899 format_CStr("Notes about %s:", cstr_String(name_GmIdentity(ident))),
900 uiTextAction_ColorEscape "OK", 900 uiTextAction_ColorEscape "OK",
901 format_CStr("ident.setnotes ident:%p", ident)); 901 format_CStr("!ident.setnotes ident:%p ptr:%p", ident, d));
902 } 902 }
903 return iTrue; 903 return iTrue;
904 } 904 }