mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
7e9a76dbe7
Co-authored-by: B.Melnik <b.melnik@restream.rt.ru>
26 lines
316 B
C++
26 lines
316 B
C++
#include "statuswindow.h"
|
|
|
|
void StatusWindow::toggleFullScreen()
|
|
{
|
|
if (m_isFullScreen) {
|
|
showNormal();
|
|
} else {
|
|
showFullScreen();
|
|
}
|
|
}
|
|
|
|
bool StatusWindow::isFullScreen() const
|
|
{
|
|
return m_isFullScreen;
|
|
}
|
|
|
|
void StatusWindow::removeTitleBar()
|
|
{
|
|
|
|
}
|
|
|
|
void StatusWindow::showTitleBar()
|
|
{
|
|
|
|
}
|