Pushed Imgui plate handler for lightfinder. need to redo options of it.

This commit is contained in:
cake
2025-12-05 04:48:55 +01:00
parent cc1f381687
commit feec5e8ff3
6 changed files with 298 additions and 747 deletions

View File

@@ -277,7 +277,7 @@ public partial class EditProfileUi
if (_uiSharedService.IconTextButton(FontAwesomeIcon.FileUpload, "Upload new profile picture"))
{
_fileDialogManager.OpenFileDialog("Select syncshell profile picture", ImageFileDialogFilter, (success, file) =>
_fileDialogManager.OpenFileDialog("Select syncshell profile picture", _imageFileDialogFilter, (success, file) =>
{
if (!success || string.IsNullOrEmpty(file))
return;
@@ -305,7 +305,7 @@ public partial class EditProfileUi
if (_uiSharedService.IconTextButton(FontAwesomeIcon.FileUpload, "Upload new profile banner"))
{
_fileDialogManager.OpenFileDialog("Select syncshell profile banner", ImageFileDialogFilter, (success, file) =>
_fileDialogManager.OpenFileDialog("Select syncshell profile banner", _imageFileDialogFilter, (success, file) =>
{
if (!success || string.IsNullOrEmpty(file))
return;