mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-05-09 08:04:13 -04:00
13 lines
207 B
C#
13 lines
207 B
C#
namespace HangoverAvalonia.Views;
|
|
|
|
public partial class MainWindow
|
|
{
|
|
private void deletedTab_VisibleChanged(bool isVisible)
|
|
{
|
|
if (!isVisible)
|
|
return;
|
|
|
|
_viewModel.TrashBinViewModel.Reload();
|
|
}
|
|
}
|