mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Fix windows height at first start.
This commit is contained in:
parent
e4fad4530d
commit
d47c39f3da
@ -76,11 +76,20 @@ RWindow::restoreWindowState()
|
|||||||
m_bSaveStateOnClose = true; // now we save the window state on close
|
m_bSaveStateOnClose = true; // now we save the window state on close
|
||||||
|
|
||||||
#if QT_VERSION >= 0x040200
|
#if QT_VERSION >= 0x040200
|
||||||
QByteArray geometry = getSetting("Geometry", QByteArray()).toByteArray();
|
QByteArray geo = getSetting("Geometry", QByteArray()).toByteArray();
|
||||||
if (geometry.isEmpty())
|
if (geo.isEmpty())
|
||||||
|
{
|
||||||
adjustSize();
|
adjustSize();
|
||||||
|
QRect rect = geometry();
|
||||||
|
int h = fontMetrics().height()*40;
|
||||||
|
if (rect.height()<h)
|
||||||
|
{
|
||||||
|
rect.setHeight(h);
|
||||||
|
setGeometry(rect);
|
||||||
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
restoreGeometry(geometry);
|
restoreGeometry(geo);
|
||||||
#else
|
#else
|
||||||
QRect screen = QDesktopWidget().availableGeometry();
|
QRect screen = QDesktopWidget().availableGeometry();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user