Skip to content

Commit 1c26151

Browse files
Improved debug output in DockContainerWidget
1 parent 37cbae8 commit 1c26151

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DockContainerWidget.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1207,7 +1207,7 @@ void DockContainerWidgetPrivate::dumpRecursive(int level, QWidget* widget)
12071207
std::cout << (const char*)buf
12081208
<< (DockArea->isHidden() ? " " : "v")
12091209
<< (DockArea->openDockWidgetsCount() > 0 ? " " : "c")
1210-
<< " DockArea" << std::endl;
1210+
<< " DockArea " << "[hs: " << DockArea->sizePolicy().horizontalStretch() << ", vs: " << DockArea->sizePolicy().verticalStretch() << "]" << std::endl;
12111211
buf.fill(' ', (level + 1) * 4);
12121212
for (int i = 0; i < DockArea->dockWidgetsCount(); ++i)
12131213
{

0 commit comments

Comments
 (0)