PipeTap/src/gui/window.blp
Vasiliy Doylov 149689d7ca
UI: remove window dragging functionality and add manual settings
Signed-off-by: Vasiliy Doylov <nekocwd@mainlining.org>
2025-03-18 00:35:39 +03:00

20 lines
297 B
Text

using Gtk 4.0;
using Adw 1;
template $PipeTapUiFloatingWindow: Gtk.Window {
title: _("PipeTap");
default-width: 60;
default-height: 60;
styles [
"pt-transparent",
"osd",
]
Adw.Bin content_bin {
valign: fill;
halign: fill;
hexpand: true;
vexpand: true;
}
}