Add palette flag that prevents deleting

This commit is contained in:
2025-02-16 15:49:25 +01:00
parent ac6a46134e
commit 6ddca9e79f
4 changed files with 25 additions and 10 deletions

View File

@@ -2,9 +2,10 @@ import { VRAMArea } from "../vram-components.slint";
import { Button, ComboBox, GroupBox, StandardListView } from "std-widgets.slint";
struct VRAMImage {
img: image,
x: int,
y: int,
img: image,
x: int,
y: int,
is_palette: bool,
}
export component MainTab inherits Rectangle {