diff options
Diffstat (limited to 'lang/gjs/src')
-rw-r--r-- | lang/gjs/src/gtk3/app.ts | 2 | ||||
-rw-r--r-- | lang/gjs/src/gtk4/app.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lang/gjs/src/gtk3/app.ts b/lang/gjs/src/gtk3/app.ts index ccf714c..aa43641 100644 --- a/lang/gjs/src/gtk3/app.ts +++ b/lang/gjs/src/gtk3/app.ts @@ -1,6 +1,6 @@ import Gtk from "gi://Gtk?version=3.0" import Astal from "gi://Astal?version=3.0" -import { mkApp } from "src/_app" +import { mkApp } from "../_app" Gtk.init(null) diff --git a/lang/gjs/src/gtk4/app.ts b/lang/gjs/src/gtk4/app.ts index ad3c1cb..1c51772 100644 --- a/lang/gjs/src/gtk4/app.ts +++ b/lang/gjs/src/gtk4/app.ts @@ -1,6 +1,6 @@ import Gtk from "gi://Gtk?version=4.0" import Astal from "gi://Astal?version=4.0" -import { mkApp } from "src/_app" +import { mkApp } from "../_app" Gtk.init() |