Gradience/data/ui/no_plugin_window.blp

20 lines
439 B
Text
Raw Normal View History

2022-09-26 21:33:06 +00:00
using Gtk 4.0;
using Adw 1;
template GradienceNoPluginPrefWindow : Adw.PreferencesWindow {
title: _("Plugin Preferences");
search-enabled: false;
default-height: 400;
default-width: 400;
modal: true;
Adw.PreferencesPage {
Adw.StatusPage {
name: "empty";
icon-name: "action-unavailable-symbolic";
title: _("No Preferences");
description: _("This plugin doesn't have any preferences.");
}
2022-09-26 21:33:06 +00:00
}
}