mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-05 20:14:00 +00:00
7d9aacd1dd
Signed-off-by: 0xMRTT <0xMRTT@tuta.io>
33 lines
685 B
Text
33 lines
685 B
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template GradienceNoPluginPrefWindow: Adw.Window {
|
|
title: _("");
|
|
modal: true;
|
|
default-width: 500;
|
|
default-height: 500;
|
|
halign: center;
|
|
valign: center;
|
|
|
|
|
|
Adw.Leaflet leaflet {
|
|
can-unfold: false;
|
|
|
|
Gtk.Box main_view {
|
|
orientation: vertical;
|
|
|
|
Adw.HeaderBar titlebar {
|
|
styles ["flat"]
|
|
}
|
|
|
|
Adw.StatusPage {
|
|
name: "empty";
|
|
title: _("No preferences");
|
|
icon-name: "action-unavailable-symbolic";
|
|
|
|
description: _("This plugin doesn't have any settings");
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|