mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-06 19:53:36 +00:00
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()
|
|
{
|
|
|
|
}
|