Handle contact on UI

This commit is contained in:
2025-09-04 23:19:20 +03:30
parent fcb23f6d43
commit 9dbdf89831
3 changed files with 324 additions and 89 deletions
@@ -40,6 +40,7 @@ public class MainController {
private enum SearchMode {
GLOBAL,
CHAT
@@ -429,7 +430,7 @@ public class MainController {
}
}
private void openChat(ChatEntry chat) {
void openChat(ChatEntry chat) {
try {
FXMLLoader loader = new FXMLLoader(getClass().getResource("/org/to/telegramfinalproject/Fxml/chat_page.fxml"));
Node chatPage = loader.load();
@@ -1149,4 +1150,8 @@ public class MainController {
}
}
}