mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-23 06:05:24 +00:00
Don't override initial state for source diff view (#760)
This commit is contained in:
@@ -23,6 +23,7 @@
|
|||||||
* Add new plugin template to the `init` command ([#738])
|
* Add new plugin template to the `init` command ([#738])
|
||||||
* Added rich Source diffs in patch visualizer ([#748])
|
* Added rich Source diffs in patch visualizer ([#748])
|
||||||
* Fix PatchTree performance issues ([#755])
|
* Fix PatchTree performance issues ([#755])
|
||||||
|
* Don't override the initial enabled state for source diffing ([#760])
|
||||||
|
|
||||||
[#745]: https://github.com/rojo-rbx/rojo/pull/745
|
[#745]: https://github.com/rojo-rbx/rojo/pull/745
|
||||||
[#668]: https://github.com/rojo-rbx/rojo/pull/668
|
[#668]: https://github.com/rojo-rbx/rojo/pull/668
|
||||||
@@ -46,6 +47,7 @@
|
|||||||
[#738]: https://github.com/rojo-rbx/rojo/pull/738
|
[#738]: https://github.com/rojo-rbx/rojo/pull/738
|
||||||
[#748]: https://github.com/rojo-rbx/rojo/pull/748
|
[#748]: https://github.com/rojo-rbx/rojo/pull/748
|
||||||
[#755]: https://github.com/rojo-rbx/rojo/pull/755
|
[#755]: https://github.com/rojo-rbx/rojo/pull/755
|
||||||
|
[#760]: https://github.com/rojo-rbx/rojo/pull/760
|
||||||
|
|
||||||
## [7.3.0] - April 22, 2023
|
## [7.3.0] - April 22, 2023
|
||||||
* Added `$attributes` to project format. ([#574])
|
* Added `$attributes` to project format. ([#574])
|
||||||
|
|||||||
@@ -184,7 +184,7 @@ function ConfirmingPage:render()
|
|||||||
active = true,
|
active = true,
|
||||||
|
|
||||||
initDockState = Enum.InitialDockState.Float,
|
initDockState = Enum.InitialDockState.Float,
|
||||||
overridePreviousState = true,
|
overridePreviousState = false,
|
||||||
floatingSize = Vector2.new(500, 350),
|
floatingSize = Vector2.new(500, 350),
|
||||||
minimumSize = Vector2.new(400, 250),
|
minimumSize = Vector2.new(400, 250),
|
||||||
|
|
||||||
|
|||||||
@@ -400,7 +400,7 @@ function ConnectedPage:render()
|
|||||||
active = self.state.showingSourceDiff,
|
active = self.state.showingSourceDiff,
|
||||||
|
|
||||||
initDockState = Enum.InitialDockState.Float,
|
initDockState = Enum.InitialDockState.Float,
|
||||||
overridePreviousState = true,
|
overridePreviousState = false,
|
||||||
floatingSize = Vector2.new(500, 350),
|
floatingSize = Vector2.new(500, 350),
|
||||||
minimumSize = Vector2.new(400, 250),
|
minimumSize = Vector2.new(400, 250),
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user