From 2b54b5767dfd3f3de474b6050a851284e3dca417 Mon Sep 17 00:00:00 2001 From: Wieland Hoffmann Date: Thu, 29 Oct 2015 20:28:11 +0100 Subject: [PATCH] Remove a call to metadata_box.resize_columns It has been removed in af184bc. Fixes PICARD-775. --- picard/ui/mainwindow.py | 1 - 1 file changed, 1 deletion(-) diff --git a/picard/ui/mainwindow.py b/picard/ui/mainwindow.py index 2f14fd095..f9861a0f0 100644 --- a/picard/ui/mainwindow.py +++ b/picard/ui/mainwindow.py @@ -895,7 +895,6 @@ class MainWindow(QtGui.QMainWindow): """Show/hide the cover art box.""" if self.show_cover_art_action.isChecked(): self.cover_art_box.show() - self.metadata_box.resize_columns() else: self.cover_art_box.hide()