Skip to content

Commit 32f50cf

Browse files
committed
fix: export button not showing when closing without returning to menu
closes #50
1 parent 945f064 commit 32f50cf

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

‎CHANGELOG.md‎

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11+
### Fixed
12+
13+
- Fixed the export button not showing whent the plugin was closed without returning to menu
14+
1115
## [3.0.0-rc.2] - 2025-10-02
1216

1317
### Fixed

‎src/Components/main/init.luau‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,9 @@ return function(baseScope: types.Scope, props: props): Fusion.Child
5353
if currentPossibleVehicle ~= nil then
5454
local currentConfiguration = chassisHandler:getConfiguration(currentPossibleVehicle)
5555
if currentConfiguration ~= nil then
56+
log.debug("Found vehicle configuration for possible vehicle")
5657
props.CurrentVehicle:set(currentPossibleVehicle)
58+
props.PossibleVehicle:set(nil)
5759
currentPanel:set("Vehicle Setup")
5860
currentPage:set("Functions")
5961
else

‎src/version.luau‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ function version.isOutdated(self: version)
8787
self.latestVersion
8888
)
8989
)
90-
return true
90+
return true, false
9191
end
9292

93-
return false
93+
return false, false
9494
end
9595

9696
return version

0 commit comments

Comments
��(0)