We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 126355f commit 8ee17a7Copy full SHA for 8ee17a7
src/Previewer/Internal.js
@@ -5,6 +5,7 @@ import GObject from "gi://GObject";
5
import Adw from "gi://Adw";
6
7
import { once } from "../../troll/src/async.js";
8
+import { build } from "../../troll/src/builder.js";
9
10
// eslint-disable-next-line no-restricted-globals
11
const { addSignalMethods } = imports.signals;
@@ -80,6 +81,10 @@ export default function Internal({
80
81
dropdown_preview_align.selected = 0;
82
preview(object);
83
},
84
+ build(params) {
85
+ console.warn("workbench.build is experimental");
86
+ return build(panel_ui.xml, params);
87
+ },
88
};
89
90
let obj;
0 commit comments