Skip to content

Commit

Permalink
Keep tracking game until tracker is replaced
Browse files Browse the repository at this point in the history
  • Loading branch information
FrogTheFrog committed May 1, 2023
1 parent ef0ceb9 commit 0639c69
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

cmake_minimum_required(VERSION 3.21)
project(MoonDeckBuddy
VERSION 1.5.0
VERSION 1.5.1
DESCRIPTION "A server-side buddy app to help control the PC and Steam from SteamDeck via the MoonDeck plugin."
HOMEPAGE_URL "https://github.com/FrogTheFrog/moondeck-buddy"
LANGUAGES C CXX)
Expand Down
7 changes: 0 additions & 7 deletions src/lib/os/steamhandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,13 +277,6 @@ void SteamHandler::slotTrackedAppIsRunning(bool state)
}

qCDebug(lc::os).nospace() << "App " << m_tracked_app->m_app_id << " \"running\" value change detected: " << state;
if (m_tracked_app->m_is_running && !state)
{
// The app was closed, we are no longer watching it
clearTrackedApp();
return;
}

m_tracked_app->m_is_running = state;
}

Expand Down

0 comments on commit 0639c69

Please sign in to comment.