[pitivi/1.0] mainwindow: Remove never-used missing-plugins logic
- From: Thibault Saunier <tsaunier src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pitivi/1.0] mainwindow: Remove never-used missing-plugins logic
- Date: Thu, 22 Nov 2018 15:53:08 +0000 (UTC)
commit fa388b9d6d2d2c1d57c1e4859f80159c0eb7ee4b
Author: Alexandru Băluț <alexandru balut gmail com>
Date: Tue Nov 20 23:22:25 2018 +0100
mainwindow: Remove never-used missing-plugins logic
pitivi/mainwindow.py | 18 ------------------
1 file changed, 18 deletions(-)
---
diff --git a/pitivi/mainwindow.py b/pitivi/mainwindow.py
index e06d72a4..80a19cab 100644
--- a/pitivi/mainwindow.py
+++ b/pitivi/mainwindow.py
@@ -25,7 +25,6 @@ from gi.repository import Gdk
from gi.repository import GES
from gi.repository import Gio
from gi.repository import Gst
-from gi.repository import GstPbutils
from gi.repository import Gtk
from pitivi.clipproperties import ClipProperties
@@ -994,29 +993,12 @@ class MainWindow(Gtk.ApplicationWindow, Loggable):
return new_uri
def _connectToProject(self, project):
- # FIXME GES we should re-enable this when possible
- # medialibrary.connect("missing-plugins", self._sourceListMissingPluginsCb)
project.connect("project-changed", self._projectChangedCb)
project.connect("rendering-settings-changed",
self._rendering_settings_changed_cb)
project.ges_timeline.connect("notify::duration",
self._timelineDurationChangedCb)
- def _sourceListMissingPluginsCb(
- self, unused_project, unused_uri, unused_factory,
- details, unused_descriptions, missingPluginsCallback):
- res = self._installPlugins(details, missingPluginsCallback)
- return res
-
- def _installPlugins(self, details, missingPluginsCallback):
- context = GstPbutils.InstallPluginsContext()
- if self.app.system.has_x11():
- context.set_xid(self.window.xid)
-
- res = GstPbutils.install_plugins_async(details, context,
- missingPluginsCallback)
- return res
-
def _setProject(self, project):
"""Disconnects and then reconnects callbacks to the specified project.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]