Skip to content

Commit

Permalink
version 1.2.5 update
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyp9715 committed Jun 2, 2023
1 parent 89bb93e commit 9cde4d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion DeleteNewline/GlobalHook/HookImplement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ private static void GlobalKeyHook_OnKeyDown(object? sender, GlobalKeyEventArgs e
isPressedKey1 = true;
}

if(e.KeyCode == key2)
// 순서제한, LeftAlt → F1 순서는 가능
// F1 → LeftAlt 순서는 불가능
if(e.KeyCode == key2 && isPressedKey1 == true)
{
isPressedKey2 = true;
}
Expand Down
2 changes: 1 addition & 1 deletion DeleteNewline/ViewModel/ViewModel_Page_Setting.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public string text_textBox_keybind
get => _text_textBox_keybind;

// SetProperty 는 변경되었을 경우만 OnPropertyChanged 를 발생시키기에 수동으로 추가함.
// (아무것도 입력하지 않고 textBox_bindKey Focus 벗어날 시 문제발생)
// 아무것도 입력하지 않고 textBox_bindKey Focus 벗어날 시 문제발생
set
{
OnPropertyChanging();
Expand Down

0 comments on commit 9cde4d1

Please sign in to comment.