Various improvements

This commit is contained in:
Ilya Laktyushin
2025-06-10 22:11:07 +02:00
parent 2d1e99affe
commit f59abe1689
29 changed files with 1289 additions and 199 deletions

View File

@@ -1241,4 +1241,13 @@ public class ChatMessageTodoBubbleContentNode: ChatMessageBubbleContentNode {
}
return nil
}
public func taskItemFrame(id: Int32) -> CGRect? {
for node in self.optionNodes {
if node.option?.id == id {
return node.frame
}
}
return nil
}
}