Skip to content

Commit

Permalink
fix: multiple MPS projects didn't open in 2022.3
Browse files Browse the repository at this point in the history
If multiple MPS projects where found in /mps-projects they didn't open automatically, but MPS was
showing the project chooser at startup.
  • Loading branch information
slisson committed Feb 7, 2025
1 parent bfa7b72 commit daa68c7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/update-recent-projects.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ do
PROJECT_DIR="$(dirname "$dir")"
echo " <entry key=\"$PROJECT_DIR\">" >> $RECENT_PROJECTS_FILE
echo ' <value>' >> $RECENT_PROJECTS_FILE
echo " <RecentProjectMetaInfo frameTitle=\"$PROJECT_DIR\" opened=\"true\" />" >> $RECENT_PROJECTS_FILE
echo " <RecentProjectMetaInfo frameTitle=\"$PROJECT_DIR\" opened=\"true\">" >> $RECENT_PROJECTS_FILE
echo ' <frame extendedState="6" />' >> $RECENT_PROJECTS_FILE
echo ' </RecentProjectMetaInfo>' >> $RECENT_PROJECTS_FILE
echo ' </value>' >> $RECENT_PROJECTS_FILE
echo ' </entry>' >> $RECENT_PROJECTS_FILE
done
Expand Down

0 comments on commit daa68c7

Please sign in to comment.