Add rotation setting to plugins

This commit is contained in:
Stone_Red
2026-01-23 20:35:15 +01:00
parent 4133f61a5c
commit 2853d49dd9
2 changed files with 15 additions and 5 deletions
+4 -1
View File
@@ -23,7 +23,10 @@ public abstract class Plugin
[Setting("desktopmagic-vertical-alignment", "Vertical Alignment", -998)]
internal ComboBox verticalAlignment = new ComboBox("Center", "Top", "Bottom");
[Setting("theme-override", "Theme Override", -997)]
[Setting("rotation", "Rotation", -997)]
internal IntegerUpDown rotation = new IntegerUpDown(-360, 360, 0);
[Setting("theme-override", "Theme Override", -996)]
internal ComboBox themeOverride = new ComboBox("<None>");
private IPluginData application = null!;