Don't try to set the current directory to a QRC path

This commit is contained in:
Brad Davis 2018-01-25 13:04:54 -08:00
parent 867bb99b51
commit ab4e2d99f1

View file

@ -39,7 +39,6 @@ BaseLogDialog::BaseLogDialog(QWidget* parent) : QDialog(parent, Qt::Window) {
QFile styleSheet(PathUtils::resourcesPath() + "styles/log_dialog.qss");
if (styleSheet.open(QIODevice::ReadOnly)) {
QDir::setCurrent(PathUtils::resourcesPath());
setStyleSheet(styleSheet.readAll());
}