Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
ceb9ee08
Commit
ceb9ee08
authored
Jun 17, 2022
by
Jean-Baptiste Mardelle
Browse files
Fix incorrect encoding in rendered clip name on Windows.
BUG: 455286
parent
edede016
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/render/renderserver.cpp
View file @
ceb9ee08
...
...
@@ -38,6 +38,7 @@ void RenderServer::jobConnected()
void
RenderServer
::
jobSent
()
{
QLocalSocket
*
socket
=
reinterpret_cast
<
QLocalSocket
*>
(
sender
());
QTextStream
text
(
socket
);
text
.
setCodec
(
"UTF-8"
);
QString
block
,
line
;
while
(
text
.
readLineInto
(
&
line
))
{
block
.
append
(
line
);
...
...
Write
Preview
Supports
Markdown
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