Permalink
Browse files
Qt: Fix shader selector on Ubuntu (fixes #767)
- Loading branch information...
Showing
with
2 additions
and
1 deletion.
-
+1
−0
CHANGES
-
+1
−1
src/platform/qt/ShaderSelector.cpp
|
|
@@ -169,6 +169,7 @@ Bugfixes: |
|
|
- PSP2: Use custom localtime_r since newlib version is broken (fixes mgba.io/i/560)
|
|
|
- GBA SIO: Improve SIO Normal dummy driver (fixes mgba.io/i/520)
|
|
|
- Qt: Fix patch loading while a game is running
|
|
|
+ - Qt: Fix shader selector on Ubuntu (fixes mgba.io/i/767)
|
|
|
Misc:
|
|
|
- Qt: Add language selector
|
|
|
- GBA Timer: Improve accuracy of timers
|
|
|
|
|
|
@@ -62,7 +62,7 @@ void ShaderSelector::clear() { |
|
|
void ShaderSelector::selectShader() {
|
|
|
QString path(GBAApp::dataDir());
|
|
|
path += QLatin1String("/shaders");
|
|
|
- QFileDialog dialog(nullptr, tr("Load shader"), path, tr("%1 Shader (%.shader)").arg(projectName));
|
|
|
+ QFileDialog dialog(nullptr, tr("Load shader"), path);
|
|
|
dialog.setFileMode(QFileDialog::Directory);
|
|
|
dialog.exec();
|
|
|
QStringList names = dialog.selectedFiles();
|
|
|
|
0 comments on commit
ecc4d6e