From 65cb9faec969155a74a8949b7c7c80df3798fc00 Mon Sep 17 00:00:00 2001 From: Ole Christian Eidheim Date: Wed, 12 Aug 2015 12:34:34 +0200 Subject: [PATCH] Disabled plugins since it lead to a crash on Arch Linux. We most likely have to rewrite the plugin system. --- src/api.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api.cc b/src/api.cc index 0cf4d8c..be1381d 100644 --- a/src/api.cc +++ b/src/api.cc @@ -13,7 +13,7 @@ PluginApi::PluginApi(Notebook* notebook, Menu* menu) { this->menu = menu; DEBUG("Initiating plugins(from plugins.py).."); #ifndef __APPLE__ - InitPlugins(); //TODO: fix this + //InitPlugins(); //TODO: fix this #endif DEBUG("Plugins initiated.."); }