summaryrefslogtreecommitdiff
path: root/winrt/mupdf_cpp/MainPage.xaml.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'winrt/mupdf_cpp/MainPage.xaml.cpp')
-rw-r--r--winrt/mupdf_cpp/MainPage.xaml.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/winrt/mupdf_cpp/MainPage.xaml.cpp b/winrt/mupdf_cpp/MainPage.xaml.cpp
index e7141a40..dded888e 100644
--- a/winrt/mupdf_cpp/MainPage.xaml.cpp
+++ b/winrt/mupdf_cpp/MainPage.xaml.cpp
@@ -168,10 +168,10 @@ void mupdf_cpp::MainPage::Picker(Platform::Object^ sender, Windows::UI::Xaml::Ro
FileOpenPicker^ openPicker = ref new FileOpenPicker();
openPicker->ViewMode = PickerViewMode::List;
- openPicker->SuggestedStartLocation = PickerLocationId::PicturesLibrary;
+ openPicker->SuggestedStartLocation = PickerLocationId::DocumentsLibrary;
openPicker->FileTypeFilter->Append(".pdf");
openPicker->FileTypeFilter->Append(".xps");
- openPicker->FileTypeFilter->Append(".oxps");
+ openPicker->FileTypeFilter->Append(".cbz");
create_task(openPicker->PickSingleFileAsync()).then([this](StorageFile^ file)
{