mirror of
https://github.com/obhq/obliteration.git
synced 2025-04-02 11:02:08 -04:00
19 lines
425 B
Text
19 lines
425 B
Text
import { VerticalBox } from "std-widgets.slint";
|
|
|
|
export component WaitForDebugger inherits Window {
|
|
in property <string> address;
|
|
|
|
title: "Obliteration";
|
|
icon: @image-url("@root/assets/icon.png");
|
|
width: 400px;
|
|
height: 50px;
|
|
|
|
VerticalBox {
|
|
alignment: center;
|
|
|
|
Text {
|
|
text: "Waiting for debugger at \{address}.";
|
|
horizontal-alignment: center;
|
|
}
|
|
}
|
|
}
|