Fix RIDER-79086 Toolwindow doesn't remember its' state, fix RIDER-79648 Environment wizard is not shown if net5 is installed (without .net 6), fix RIDER-78120 Delete useless text from initial wizard, fix RIDER-79132 "Keymaps" layout is broken in the initial wizard

(cherry picked from commit 049b8bfe83a1ba692138251ddfe72e450d0843b9)

IJ-CR-27152

(cherry picked from commit e2eb6e4898ae93f3f74fbe9ba283aff594430468)

(cherry picked from commit 775bea41457dfb3bc5b261f17d38aa8a913a3bf8)

GitOrigin-RevId: 14c9c48ee6132ff3d9c933e8cbcf0bb939a69117
This commit is contained in:
Sasha Blashenkov
2022-08-04 17:48:40 +00:00
committed by intellij-monorepo-bot
parent a434867ee7
commit a9398fbb13
2 changed files with 2 additions and 1 deletions
@@ -58,6 +58,7 @@ class DesktopLayout(private val idToInfo: MutableMap<String, WindowInfoImpl> = H
}
fun getInfo(id: String) = idToInfo.get(id)
fun getInfos() = idToInfo.toMap()
internal fun addInfo(id: String, info: WindowInfoImpl) {
val old = idToInfo.put(id, info)
@@ -95,7 +95,7 @@ open class ToolWindowManagerImpl @NonInjectable @TestOnly internal constructor(v
private val state: ToolWindowManagerState
get() = project.service()
private var layoutState
var layoutState
get() = state.layout
set(value) { state.layout = value }