[pitivi] medialibrary: Hide filenames in icon view



commit d6e6ae13e639d5db58841e08eff7a302acd7d744
Author: krishna-incrypto <vpkrishnanand gmail com>
Date:   Fri Jan 24 14:54:57 2020 +0530

    medialibrary: Hide filenames in icon view
    
    Fixes #2333

 pitivi/medialibrary.py | 11 -----------
 1 file changed, 11 deletions(-)
---
diff --git a/pitivi/medialibrary.py b/pitivi/medialibrary.py
index d6ca480a..8ed8f5e5 100644
--- a/pitivi/medialibrary.py
+++ b/pitivi/medialibrary.py
@@ -625,17 +625,6 @@ class MediaLibraryWidget(Gtk.Box, Loggable):
         cell = Gtk.CellRendererPixbuf()
         self.iconview.pack_start(cell, False)
         self.iconview.add_attribute(cell, "pixbuf", COL_ICON_128)
-
-        cell = Gtk.CellRendererText()
-        cell.props.alignment = Pango.Alignment.CENTER
-        cell.props.xalign = 0.5
-        cell.props.yalign = 0.0
-        cell.props.xpad = 0
-        cell.props.ypad = 0
-        cell.set_property("ellipsize", Pango.EllipsizeMode.START)
-        self.iconview.pack_start(cell, False)
-        self.iconview.add_attribute(cell, "markup", COL_SEARCH_TEXT)
-
         self.iconview.set_selection_mode(Gtk.SelectionMode.MULTIPLE)
 
         # The _progressbar that shows up when importing clips


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]