aboutsummaryrefslogtreecommitdiff
path: root/main/src/main.vala
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/main.vala')
-rw-r--r--main/src/main.vala9
1 files changed, 8 insertions, 1 deletions
diff --git a/main/src/main.vala b/main/src/main.vala
index bec2d752..ba326ad8 100644
--- a/main/src/main.vala
+++ b/main/src/main.vala
@@ -5,7 +5,14 @@ namespace Dino {
void main(string[] args) {
try{
- Plugins.Loader loader = new Plugins.Loader(args.length > 0 ? args[0] : null);
+ string? exec_path = args.length > 0 ? args[0] : null;
+ if (exec_path != null && exec_path.contains(Path.DIR_SEPARATOR_S)) {
+ string bindir = Path.get_dirname(exec_path);
+ if (FileUtils.test(Path.build_filename(bindir, "gschemas.compiled"), FileTest.IS_REGULAR)) {
+ Environment.set_variable("GSETTINGS_SCHEMA_DIR", Path.get_dirname(exec_path), false);
+ }
+ }
+ Plugins.Loader loader = new Plugins.Loader(exec_path);
Gtk.init(ref args);
Dino.Ui.Application app = new Dino.Ui.Application();
foreach (string plugin in new string[]{"omemo", "openpgp"}) {