Skip to content

Commit

Permalink
critical bug fix: #864 #856
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide committed Dec 20, 2023
1 parent 25dea89 commit 4e9cff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plotjuggler_app/plot_docker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ void PlotDocker::restoreSplitter(QDomElement elem, DockWidget* widget)
(orientation == Qt::Horizontal) ? widgets[i]->width() : widgets[i]->height();
}

auto sizes_str = elem.attribute("sizes").splitRef(";", QString::SkipEmptyParts);
auto sizes_str = elem.attribute("sizes").split(";");
QList<int> sizes;

for (int i = 0; i < splitter_count; i++)
Expand Down

0 comments on commit 4e9cff9

Please sign in to comment.