Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. ARM problem: Qt::Window Qt::Widget showFullscreen() showNormal()
Qt 6.11 is out! See what's new in the release blog

ARM problem: Qt::Window Qt::Widget showFullscreen() showNormal()

Scheduled Pinned Locked Moved General and Desktop
1 Posts 1 Posters 2.9k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    P Offline
    pacanek
    wrote on last edited by
    #1

    Code is very simple and working for x86 version: (Qt 4.8)
    @if( fullscreen)
    {
    this->setWindowFlags( Qt::Window);
    showFullScreen();
    }
    else
    {
    this->setWindowFlags( Qt::SubWindow);
    showNormal();
    }@

    this == QWidget with parent.

    On arm version fullscreen works 100% but getting back to normal widget embedded in another widget ends with flying widget not docked in it's previous location. This is incosistent with x86 version which embeds it to previous location.

    compositor: wayland

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved