mirror of
https://github.com/GradienceTeam/Gradience.git
synced 2024-11-03 11:53:58 +00:00
31 lines
601 B
Text
31 lines
601 B
Text
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template GradienceNoPluginPrefWindow: Adw.Window {
|
|
title: _("Plugin Preferences");
|
|
modal: true;
|
|
default-width: 400;
|
|
default-height: 400;
|
|
resizable: true;
|
|
deletable: true;
|
|
|
|
|
|
Adw.Leaflet leaflet {
|
|
can-unfold: false;
|
|
|
|
Gtk.Box main_view {
|
|
orientation: vertical;
|
|
|
|
Adw.HeaderBar titlebar {
|
|
styles ["flat"]
|
|
}
|
|
|
|
Adw.StatusPage {
|
|
name: "empty";
|
|
icon-name: "action-unavailable-symbolic";
|
|
title: _("No Preferences");
|
|
description: _("This plugin doesn't have any preferences.");
|
|
}
|
|
}
|
|
}
|
|
}
|