diff --git a/Nanohana/MainWindow.xaml.cs b/Nanohana/MainWindow.xaml.cs index 0b72053..a541c23 100644 --- a/Nanohana/MainWindow.xaml.cs +++ b/Nanohana/MainWindow.xaml.cs @@ -84,12 +84,12 @@ void CopyToClipboard(string text) void CopyId(object sender, RoutedEventArgs e) { - CopyToClipboard(loginItem.Id); + CopyToClipboard(UserId.Text); } void CopyPassword(object sender, RoutedEventArgs e) { - CopyToClipboard(loginItem.Password); + CopyToClipboard(InputPasswordBox.Password); } void ClickEditSite(object sender, RoutedEventArgs e) diff --git a/README.md b/README.md index ce4753a..ba81744 100644 --- a/README.md +++ b/README.md @@ -6,5 +6,3 @@ |![Dark Nanohana](docs/Dark.jpg)|![Light Nanohana](docs/Light.jpg)| ドキュメント (Documents) フォルダー下の `.nanohana` (隠しディレクトリ) にデータを保存します。OneDrive 等でドキュメントフォルダーが共有されている場合は、PC 間で同期されます。 - -制作時間: 2 日 \ No newline at end of file diff --git a/installer.nsh b/installer.nsh index 1cefa30..27326bb 100644 --- a/installer.nsh +++ b/installer.nsh @@ -81,4 +81,6 @@ Section "Uninstall" # レジストリ キーを削除 DeleteRegKey HKLM "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\${PRODUCT_NAME}" -SectionEnd \ No newline at end of file +SectionEnd + +RequestExecutionLevel user \ No newline at end of file