Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Multimedia
Kdenlive
Commits
4c8ef3d5
Commit
4c8ef3d5
authored
Feb 27, 2021
by
Jean-Baptiste Mardelle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ensure we use an UTF-8 encoding for markers
CCBUG: 433615
parent
74fb541e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/bin/model/markerlistmodel.cpp
src/bin/model/markerlistmodel.cpp
+1
-1
No files found.
src/bin/model/markerlistmodel.cpp
View file @
4c8ef3d5
...
...
@@ -460,7 +460,7 @@ QString MarkerListModel::toJson() const
list
.
push_back
(
currentMarker
);
}
QJsonDocument
json
(
list
);
return
QString
(
json
.
toJson
());
return
QString
::
fromUtf8
(
json
.
toJson
());
}
bool
MarkerListModel
::
removeAllMarkers
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment