From 7bc6fdfdeebc2c38ab3d00961a950b3de10b84f5 Mon Sep 17 00:00:00 2001 From: Phenom Date: Mon, 12 Oct 2015 23:17:00 +0200 Subject: [PATCH] Fix the height of the ToolBar in VOIP FullScreen for Windows. --- plugins/VOIP/gui/VOIPChatWidgetHolder.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/VOIP/gui/VOIPChatWidgetHolder.cpp b/plugins/VOIP/gui/VOIPChatWidgetHolder.cpp index 75bee860d..8e01d33a2 100644 --- a/plugins/VOIP/gui/VOIPChatWidgetHolder.cpp +++ b/plugins/VOIP/gui/VOIPChatWidgetHolder.cpp @@ -793,7 +793,7 @@ void VOIPChatWidgetHolder::replaceFullscreenWidget() outputVideoDeviceFS->setGeometry(QRect(QPoint(0,0),fullScreenFrame->geometry().size())); echoVideoDeviceFS->setGeometry(QRect(QPoint(fullScreenFrame->width(), fullScreenFrame->height()) - QPoint(320,240), QSize(320,240))); 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->setGeometry(toolBarFSGeo);