Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2ad53a51 authored by Benjamin Dobell's avatar Benjamin Dobell
Browse files

Due to a Qt bug on OS X we need to browse for *.gz not *.tar.gz

parent b75bdcbc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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())
	{