File tree Expand file tree Collapse file tree
Core/Sources/SuggestionWidget/SuggestionPanelContent Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -77,6 +77,7 @@ struct ChatPanelMessages: View {
7777 . buttonStyle ( . plain)
7878 . xcodeStyleFrame ( )
7979 . matchedGeometryEffect ( id: " input " , in: inputAreaNamespace)
80+ . scaleEffect ( x: - 1 , y: 1 , anchor: . center)
8081 }
8182
8283 if chat. history. isEmpty {
@@ -89,6 +90,7 @@ struct ChatPanelMessages: View {
8990 )
9091 . xcodeStyleFrame ( )
9192 . rotationEffect ( Angle ( degrees: 180 ) )
93+ . scaleEffect ( x: - 1 , y: 1 , anchor: . center)
9294 }
9395
9496 ForEach ( chat. history. reversed ( ) , id: \. id) { message in
@@ -112,10 +114,12 @@ struct ChatPanelMessages: View {
112114 )
113115 . xcodeStyleFrame ( )
114116 . rotationEffect ( Angle ( degrees: 180 ) )
117+ . scaleEffect ( x: - 1 , y: 1 , anchor: . center)
115118 }
116119 }
117120 }
118121 . rotationEffect ( Angle ( degrees: 180 ) )
122+ . scaleEffect ( x: - 1 , y: 1 , anchor: . center)
119123 }
120124}
121125
You can’t perform that action at this time.
0 commit comments