From 2ad53a5100bd7d6dc8caf043b74190f20f0387eb Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Thu, 5 Mar 2015 18:10:28 +1100 Subject: Due to a Qt bug on OS X we need to browse for *.gz not *.tar.gz --- heimdall-frontend/source/mainwindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/heimdall-frontend/source/mainwindow.cpp b/heimdall-frontend/source/mainwindow.cpp index 55fc2db..e110d69 100644 --- a/heimdall-frontend/source/mainwindow.cpp +++ b/heimdall-frontend/source/mainwindow.cpp @@ -505,7 +505,7 @@ void MainWindow::SelectFirmwarePackage(void) loadedPackageData.Clear(); UpdatePackageUserInterface(); - QString path = PromptFileSelection("Select Package", "*.tar.gz"); + QString path = PromptFileSelection("Select Package", "Firmware Package (*.gz)"); firmwarePackageLineEdit->setText(path); if (firmwarePackageLineEdit->text() != "") @@ -1059,7 +1059,7 @@ void MainWindow::RemoveDevice(void) void MainWindow::BuildPackage(void) { - QString packagePath = PromptFileCreation("Save Package", "*.tar.gz"); + QString packagePath = PromptFileCreation("Save Package", "Firmware Package (*.gz)"); if (!packagePath.isEmpty()) { -- cgit v1.1