Tooth/src/Dialogs/Saveable.vala
Evangelos Paterakis 5ffed3ec5f
chore: rebrand
2022-11-13 22:57:43 +02:00

11 lines
293 B
Vala

using Gtk;
public interface Tooth.Dialogs.Saveable : Window {
protected void construct_saveable (GLib.Settings settings) {
settings.bind ("window-w", this, "default-width", SettingsBindFlags.DEFAULT);
settings.bind ("window-h", this, "default-height", SettingsBindFlags.DEFAULT);
}
}