mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-29 07:03:08 +00:00
use showFullScreen() instead of visible=true
This commit is contained in:
parent
3b265922fd
commit
57a016320b
3 changed files with 2 additions and 4 deletions
|
|
@ -42,10 +42,8 @@ FullScreenPanel::~FullScreenPanel()
|
||||||
void FullScreenPanel::showEvent(QShowEvent *event)
|
void FullScreenPanel::showEvent(QShowEvent *event)
|
||||||
{
|
{
|
||||||
QQuickWindow::showEvent(event);
|
QQuickWindow::showEvent(event);
|
||||||
setWindowState(Qt::WindowFullScreen);
|
|
||||||
KWindowSystem::setState(winId(), NET::SkipTaskbar);
|
KWindowSystem::setState(winId(), NET::SkipTaskbar);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#include "fullscreenpanel.moc"
|
#include "fullscreenpanel.moc"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ FullScreenPanel {
|
||||||
|
|
||||||
property alias fixedArea: fixedArea
|
property alias fixedArea: fixedArea
|
||||||
function open() {
|
function open() {
|
||||||
window.visible = true;
|
window.showFullScreen();
|
||||||
peekAnim.running = true;
|
peekAnim.running = true;
|
||||||
}
|
}
|
||||||
function close() {
|
function close() {
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,7 @@ FullScreenPanel {
|
||||||
property alias to: internalAnim.to
|
property alias to: internalAnim.to
|
||||||
property alias from: internalAnim.from
|
property alias from: internalAnim.from
|
||||||
ScriptAction {
|
ScriptAction {
|
||||||
script: window.visible = true;
|
script: window.showFullScreen();
|
||||||
}
|
}
|
||||||
NumberAnimation {
|
NumberAnimation {
|
||||||
id: internalAnim
|
id: internalAnim
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue