summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--res/about/version.gmi1
-rw-r--r--src/ui/inputwidget.c1
2 files changed, 1 insertions, 1 deletions
diff --git a/res/about/version.gmi b/res/about/version.gmi
index 11b23019..a76769db 100644
--- a/res/about/version.gmi
+++ b/res/about/version.gmi
@@ -7,6 +7,7 @@
7# Release notes 7# Release notes
8 8
9## 1.1.1 9## 1.1.1
10* Fixed missing cursor in the New Identity "Valid until" field.
10* Fixed word wrapping issue in unread feed entry titles. 11* Fixed word wrapping issue in unread feed entry titles.
11* Fixed "Import Links as Bookmarks" so it can be used to import local copies of remote bookmarks when viewing the remote source page. 12* Fixed "Import Links as Bookmarks" so it can be used to import local copies of remote bookmarks when viewing the remote source page.
12* Fixed a cosmetic issue in the Import Identity dialog where part of the widget frames were not drawn. 13* Fixed a cosmetic issue in the Import Identity dialog where part of the widget frames were not drawn.
diff --git a/src/ui/inputwidget.c b/src/ui/inputwidget.c
index 62f0341e..ae73c9c9 100644
--- a/src/ui/inputwidget.c
+++ b/src/ui/inputwidget.c
@@ -177,7 +177,6 @@ const iString *text_InputWidget(const iInputWidget *d) {
177void setMaxLen_InputWidget(iInputWidget *d, size_t maxLen) { 177void setMaxLen_InputWidget(iInputWidget *d, size_t maxLen) {
178 d->maxLen = maxLen; 178 d->maxLen = maxLen;
179 d->mode = (maxLen == 0 ? insert_InputMode : overwrite_InputMode); 179 d->mode = (maxLen == 0 ? insert_InputMode : overwrite_InputMode);
180 resize_Array(&d->text, maxLen);
181 if (maxLen) { 180 if (maxLen) {
182 /* Set a fixed size. */ 181 /* Set a fixed size. */
183 iBlock *content = new_Block(maxLen); 182 iBlock *content = new_Block(maxLen);