changeset 1350:5ac1c323ac55

Use newly-introduced cancel icon instead of fileclose. The deceptive name of fileclose had me thinking nobody was using it, so I removed it and the cancel buttons disappeared
author Chris Cannam
date Wed, 03 Oct 2018 12:59:47 +0100
parents 01778052e663
children 9fb7133dd818
files view/View.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/view/View.cpp	Mon Oct 01 14:46:36 2018 +0100
+++ b/view/View.cpp	Wed Oct 03 12:59:47 2018 +0100
@@ -571,7 +571,7 @@
     pb->setTextVisible(false);
 
     QPushButton *cancel = new QPushButton(this);
-    cancel->setIcon(IconLoader().load("fileclose"));
+    cancel->setIcon(IconLoader().load("cancel"));
     cancel->setFlat(true);
     cancel->setFixedSize(QSize(20, 20));
     connect(cancel, SIGNAL(clicked()), this, SLOT(cancelClicked()));