mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-04-01 02:42:39 +08:00
Fixed serialization and deserialization of splitter orientation: | means Horizontal and - means vertical - ATTENTION: this breaks backward compatibility with old saved states
This commit is contained in:
parent
b353c210ee
commit
316d9a00b5
@ -555,7 +555,7 @@ void DockContainerWidgetPrivate::saveChildNodesState(QXmlStreamWriter& s, QWidge
|
|||||||
if (Splitter)
|
if (Splitter)
|
||||||
{
|
{
|
||||||
s.writeStartElement("Splitter");
|
s.writeStartElement("Splitter");
|
||||||
s.writeAttribute("Orientation", (Splitter->orientation() == Qt::Horizontal) ? "-" : "|");
|
s.writeAttribute("Orientation", (Splitter->orientation() == Qt::Horizontal) ? "|" : "-");
|
||||||
s.writeAttribute("Count", QString::number(Splitter->count()));
|
s.writeAttribute("Count", QString::number(Splitter->count()));
|
||||||
ADS_PRINT("NodeSplitter orient: " << Splitter->orientation()
|
ADS_PRINT("NodeSplitter orient: " << Splitter->orientation()
|
||||||
<< " WidgetCont: " << Splitter->count());
|
<< " WidgetCont: " << Splitter->count());
|
||||||
@ -590,11 +590,11 @@ bool DockContainerWidgetPrivate::restoreSplitter(QXmlStreamReader& s,
|
|||||||
bool Ok;
|
bool Ok;
|
||||||
QString OrientationStr = s.attributes().value("Orientation").toString();
|
QString OrientationStr = s.attributes().value("Orientation").toString();
|
||||||
int Orientation;
|
int Orientation;
|
||||||
if (OrientationStr.startsWith("-"))
|
if (OrientationStr.startsWith("|"))
|
||||||
{
|
{
|
||||||
Orientation = Qt::Horizontal;
|
Orientation = Qt::Horizontal;
|
||||||
}
|
}
|
||||||
else if (OrientationStr.startsWith("|"))
|
else if (OrientationStr.startsWith("-"))
|
||||||
{
|
{
|
||||||
Orientation = Qt::Vertical;
|
Orientation = Qt::Vertical;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user