Pushed Imgui plate handler for lightfinder. need to redo options of it.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user