Skip to content

Commit

Permalink
Close overflow modal after select move operation in see details. ab#1407
Browse files Browse the repository at this point in the history
  • Loading branch information
hamedhajiloo committed Nov 19, 2022
1 parent a289e91 commit 01ed824
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void Download()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void Move()
Expand All @@ -40,7 +40,7 @@ public void Move()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void Pin()
Expand All @@ -51,7 +51,7 @@ public void Pin()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void Unpin()
Expand All @@ -62,7 +62,7 @@ public void Unpin()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void More()
Expand All @@ -73,7 +73,7 @@ public void More()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void ChangeArtifactSlideItem(bool isNext)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public void Details()

_tcs?.SetResult(result);
_tcs = null;
Close();
}

public void Extract()
Expand All @@ -28,7 +29,7 @@ public void Extract()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void OpenWith()
Expand All @@ -39,7 +40,7 @@ public void OpenWith()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void Rename()
Expand All @@ -50,7 +51,7 @@ public void Rename()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void Copy()
Expand All @@ -61,7 +62,7 @@ public void Copy()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void Pin()
Expand All @@ -72,7 +73,7 @@ public void Pin()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void UnPin()
Expand All @@ -83,7 +84,7 @@ public void UnPin()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void Move()
Expand All @@ -94,7 +95,7 @@ public void Move()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void ShareWithApp()
Expand All @@ -105,7 +106,7 @@ public void ShareWithApp()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void ShowInLocation()
Expand All @@ -116,7 +117,7 @@ public void ShowInLocation()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public void Delete()
Expand All @@ -127,7 +128,7 @@ public void Delete()
_tcs?.SetResult(result);
_tcs = null;

_isModalOpen = false;
Close();
}

public async Task<ArtifactOverflowResult> ShowAsync
Expand Down

0 comments on commit 01ed824

Please sign in to comment.