mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Fix the height of the ToolBar in VOIP FullScreen for Windows.
This commit is contained in:
parent
0120234f92
commit
7bc6fdfdee
@ -793,7 +793,7 @@ void VOIPChatWidgetHolder::replaceFullscreenWidget()
|
|||||||
outputVideoDeviceFS->setGeometry(QRect(QPoint(0,0),fullScreenFrame->geometry().size()));
|
outputVideoDeviceFS->setGeometry(QRect(QPoint(0,0),fullScreenFrame->geometry().size()));
|
||||||
echoVideoDeviceFS->setGeometry(QRect(QPoint(fullScreenFrame->width(), fullScreenFrame->height()) - QPoint(320,240), QSize(320,240)));
|
echoVideoDeviceFS->setGeometry(QRect(QPoint(fullScreenFrame->width(), fullScreenFrame->height()) - QPoint(320,240), QSize(320,240)));
|
||||||
QRect toolBarFSGeo = QRect( (fullScreenFrame->width() - toolBarFS->geometry().width()) / 2
|
QRect toolBarFSGeo = QRect( (fullScreenFrame->width() - toolBarFS->geometry().width()) / 2
|
||||||
, fullScreenFrame->height() - toolBarFS->geometry().height()
|
, fullScreenFrame->height() - (toolBarFS->geometry().height() * 2)
|
||||||
, toolBarFS->geometry().width(), toolBarFS->geometry().height());
|
, toolBarFS->geometry().width(), toolBarFS->geometry().height());
|
||||||
toolBarFS->setGeometry(toolBarFSGeo);
|
toolBarFS->setGeometry(toolBarFSGeo);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user