Skip to content

Android: Cursor gets not hidden when leaving Popup #11004

@Murmele

Description

@Murmele

Bug Description

Bildschirmaufzeichnung.vom.2026-03-13.16-43-20.mp4

Reproducible Code (if applicable)

import { LineEdit, Button } from "std-widgets.slint";

export component MainWindow inherits Window {
    VerticalLayout {
        padding: 20px;
        alignment: space-between;
        Button {
            text: "Show popup";
            clicked => { popup.show(); }
        }
    }

    popup := PopupWindow {
        x: 30px;
        y: parent.height / 4;
        Rectangle {
            background: lightgray;
            border-width: 1px;
            border-color: black;
        }
        VerticalLayout {
            LineEdit {}
            LineEdit {}

        }
        close-policy: close-on-click-outside;
    }
}

Environment Details

  • Slint Version:
  • Platform/OS:
  • Programming Language:
  • Backend/Renderer:

Product Impact

No response

Metadata

Metadata

Assignees

Labels

a:platform-androidAndroid platform integration (mO,bS)

Type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions