# HG changeset patch # User Chris Cannam # Date 1538567987 -3600 # Node ID 5ac1c323ac5526bf564f6f7f8175f56a74ff8126 # Parent 01778052e6635e4d7644c65a2c049c074d390e28 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 diff -r 01778052e663 -r 5ac1c323ac55 view/View.cpp --- 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()));