[6.5.0] fix ui problem

This commit is contained in:
EmArrow
2024-07-17 14:32:54 +08:00
parent 530270e4c8
commit 613f26c892
21 changed files with 163 additions and 59 deletions

View File

@@ -226,7 +226,7 @@ object CallerAutopilotActionsListenerManager : CallerBase<IMoGoAutopilotActionsL
this.isAutopilotAbility = isAutopilotAbility
this.launchConditionData = launchConditionData
this.unableAutopilotReasons = unableAutopilotReasons
notification();
notification()
// if (isConnected) {
// var isEquals = true

View File

@@ -24,11 +24,11 @@ object CallerHmiViewControlListenerManager : CallerBase<IViewControlListener>()
M_LISTENERS[tag]?.visible(v)
}
fun invokeV2XEvent(tag: String, v: Int) {
fun invokeV2XEvent(v: Int, tag: String = IViewControlListener.V2X_EVENT_TAG) {
v2xEventTag[tag] = v
M_LISTENERS.forEach {
val listener = it.value
listener.v2xEventVisible(v)
listener.v2xEventVisible(v, tag)
}
}