My Profile Backend connected to UI.

This commit is contained in:
Asal Lotfi
2025-09-04 19:26:26 +03:30
parent 9a2532ff5c
commit 4b11ee51a3
4 changed files with 148 additions and 15 deletions
@@ -1,5 +1,6 @@
package org.to.telegramfinalproject.UI;
import javafx.animation.PauseTransition;
import javafx.animation.TranslateTransition;
import javafx.application.Platform;
import javafx.fxml.FXML;
@@ -643,6 +644,7 @@ public class MainController {
private enum SRType { USER, GROUP, CHANNEL, MESSAGE }
// Inner class
private static class SearchResult {
final SRType type;
final String title; // name / sender_name / ...
@@ -1136,8 +1138,4 @@ public class MainController {
getChatPageController().showChat(entry);
}
}
}