Properly clean the list in case a new load occurs.
Some checks are pending
CI/CD / build-windows (push) Waiting to run
Some checks are pending
CI/CD / build-windows (push) Waiting to run
This commit is contained in:
parent
f00d02a0ed
commit
2a8166a0c5
3 changed files with 7 additions and 3 deletions
|
@ -5,9 +5,13 @@
|
||||||
|
|
||||||
<h3 align="center">Plpext</h3>
|
<h3 align="center">Plpext</h3>
|
||||||
|
|
||||||
<div align="center"><img src="docs/demo.png" alt="User interface demo" /></div>
|
<div align="center"><img src="docs/image.png" alt="User interface demo" /></div>
|
||||||
|
|
||||||
<div align="center">https://raw.githubusercontent.com/cotti/plpext/docs/demo_video.mp4</div>
|
---
|
||||||
|
|
||||||
|
https://github.com/user-attachments/assets/b7a2c077-25ee-4412-90a4-4881c0ffa5c2
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
<div align="center">
|
<div align="center">
|
||||||
|
|
||||||
|
|
Before Width: | Height: | Size: 39 KiB After Width: | Height: | Size: 39 KiB |
|
@ -55,7 +55,7 @@ public partial class MainWindowViewModel : ViewModelBase
|
||||||
private async Task LoadFile()
|
private async Task LoadFile()
|
||||||
{
|
{
|
||||||
TotalFilesToExtract = await _fileLoaderService.GetFileCountAsync(OriginPath);
|
TotalFilesToExtract = await _fileLoaderService.GetFileCountAsync(OriginPath);
|
||||||
//AudioFiles.Clear();
|
AudioFiles.Clear();
|
||||||
await Dispatcher.UIThread.InvokeAsync(() =>
|
await Dispatcher.UIThread.InvokeAsync(() =>
|
||||||
{
|
{
|
||||||
ProgressBarText = "Loading files...";
|
ProgressBarText = "Loading files...";
|
||||||
|
|
Loading…
Reference in a new issue