Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
timothyschoen committed Feb 5, 2025
1 parent 81f9796 commit 34d23c1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ jobs:

- name: Install Dependencies (zypper)
if: ${{ matrix.pacman == 'zypper' }}
run: zypper refresh && zypper install -y git rsync wget bzip2 xz tar gzip cmake libXinerama-devel libXi-devel libcurl-devel libXcomposite-devel freeglut-devel libXrandr-devel libXcursor-devel freetype2-devel gcc gcc-c++ curl ccache python3 libjack-devel gawk unzip
run: zypper refresh && zypper install -y git rsync wget bzip2 xz tar gzip cmake alsa-lib libXinerama-devel libXi-devel libcurl-devel libXcomposite-devel freeglut-devel libXrandr-devel libXcursor-devel freetype2-devel gcc gcc-c++ curl ccache python3 libjack-devel gawk unzip

- name: Install Dependencies (pacman)
if: ${{ matrix.pacman == 'pacman' }}
Expand Down
4 changes: 1 addition & 3 deletions Source/PluginEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -754,9 +754,7 @@ void PluginEditor::mouseDrag(MouseEvent const& e)
}

bool PluginEditor::isInterestedInFileDrag(StringArray const& files)
{
return false;

{
if (openedDialog)
return false;

Expand Down
2 changes: 1 addition & 1 deletion Source/Utility/Config.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ struct ProjectInfo {
#else
static inline File const appDataDir = File::getSpecialLocation(File::SpecialLocationType::userDocumentsDirectory).getChildFile("plugdata");
#endif
static inline String const versionSuffix = "-14";
static inline String const versionSuffix = "-15";
static inline File const versionDataDir = appDataDir.getChildFile("Versions").getChildFile(ProjectInfo::versionString + versionSuffix);
};

Expand Down

0 comments on commit 34d23c1

Please sign in to comment.