diff options
author | 2021-05-17 14:49:52 +0300 | |
---|---|---|
committer | 2021-05-17 15:23:15 +0300 | |
commit | aff3f9bb87bd2b757a45af262b1c603b6562894c (patch) | |
tree | 77fa982bb0d7fa74c7192ef28de59d8d5f2f9c2f /src | |
parent | d39a0230252992beb93f212560d8d7b7fe17ebc2 (diff) | |
download | newsboat-aff3f9bb87bd2b757a45af262b1c603b6562894c.tar.gz newsboat-aff3f9bb87bd2b757a45af262b1c603b6562894c.tar.zst newsboat-aff3f9bb87bd2b757a45af262b1c603b6562894c.zip |
Switch FileBrowserFormAction's storage to Utf8String
Diffstat (limited to 'src')
-rw-r--r-- | src/filebrowserformaction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filebrowserformaction.cpp b/src/filebrowserformaction.cpp index f74fd252..80d216e4 100644 --- a/src/filebrowserformaction.cpp +++ b/src/filebrowserformaction.cpp @@ -292,7 +292,7 @@ void FileBrowserFormAction::init() const int status = ::chdir(save_path.c_str()); LOG(Level::DEBUG, "view::filebrowser: chdir(%s) = %i", save_path, status); - set_value("filenametext", default_filename); + set_value("filenametext", default_filename.to_utf8()); // Set position to 0 and back to ensure that the text is visible draw_form(); |