mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-20 15:00:36 -04:00
Merge pull request #144 from PhenomRetroShare/FixVOIP_HeightOfToolBarForWindowsInFullScreen
Fix the height of the ToolBar in VOIP FullScreen for Windows.
This commit is contained in:
commit
e9241933bf
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue