Commit 3a4843f4 authored by Clément Fauconnier's avatar Clément Fauconnier

security check on parent widget (just in case)

parent e21fe803
...@@ -510,10 +510,13 @@ void UBDockPalette::moveTabs() ...@@ -510,10 +510,13 @@ void UBDockPalette::moveTabs()
int y = border(); int y = border();
if(eUBDockTabOrientation_Down == mTabsOrientation) if(eUBDockTabOrientation_Down == mTabsOrientation)
{ {
if (mOrientation == eUBDockOrientation_Right) if (mOrientation == eUBDockOrientation_Right)
y = parentWidget()->height() - border()- mTabWidgets.size() * TABSIZE; {
else if (parentWidget())
y = height() - border()- mTabWidgets.size() * TABSIZE; y = parentWidget()->height() - border()- mTabWidgets.size() * TABSIZE;
}
else
y = height() - border()- mTabWidgets.size() * TABSIZE;
} }
mHTab = y; mHTab = y;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment