I have a QTabWidget
with two tabs. I want one to be on the east side and the other one at the top.
I've tried these style sheets, but so far I couldn't get it right.
#tab_basic::top{
}
#tab_advanced::right{
}
or
#tab_basic{
position:top;
}
#tab_advanced{
position:right;
}
or
#tab_basic::top{
}
#tab_advanced::east{
}
or
#tab_basic{
position:top;
}
#tab_advanced{
position:east;
}
Can anyone help me?