Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rampaa committed Jul 20, 2024
1 parent 340f917 commit ff05958
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion JL.Windows/GUI/PopupWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1107,7 +1107,7 @@ private void DefinitionsTextBox_PreviewMouseLeftButtonDown(object sender, MouseB
TextBox definitionsTextBox = (TextBox)sender;
_lastInteractedTextBox = definitionsTextBox;

if (Keyboard.Modifiers != (ModifierKeys.Control | ModifierKeys.Alt))
if (!Keyboard.IsKeyDown(Key.Insert))
{
return;
}
Expand Down
6 changes: 3 additions & 3 deletions JL.Windows/GUI/PreferencesWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public static bool IsItVisible()
• Readings with Orthography Info: Readings of the mined word with their orthography info, e.g. if you look up "従妹", its "Readings with Orthography Info" will be "じゅうまい, いとこ (gikun)".
• Alternative Spellings: Alternative spellings of the mined word, e.g., if you look up "わかりました", its alternative spellings will be "解る, 判る, 分る".
• Alternative Spellings with Orthography Info: Alternative spellings of the mined word with their orthography info, e.g., if you look up "嫁" its "Alternative Spellings with Orthography Info" will be "娵 (rK), 婦 (rK), 媳 (rK)".
• Definitions: Definitions of the mined word. You can edit the definitions in the popup window by pressing Ctrl+Alt and clicking on the definitions text box with the left mouse button.
• Definitions: Definitions of the mined word. You can edit the definitions in the popup window by pressing Insert key and clicking on the definitions text box with the left mouse button.
• Selected Definitions: The selected text on definition text box. If no text is selected, it will have the same value as "Definitions" field.
• Dictionary Name: Name of the dictionary, e.g., JMDict.
• Audio: Audio for the first reading of the mined word.
Expand Down Expand Up @@ -83,7 +83,7 @@ public static bool IsItVisible()
• Stroke Count: Stroke count of the kanji.
• Kanji Grade: The kanji grade level.
• Kanji Composition: Kanji composition info, e.g., "⿰女未" for "妹".
• Definitions: Definitions of the mined kanji. You can edit the definitions in the popup window by pressing Ctrl+Alt and clicking on the definitions text box with the left mouse button.
• Definitions: Definitions of the mined kanji. You can edit the definitions in the popup window by pressing Insert key and clicking on the definitions text box with the left mouse button.
• Selected Definitions: The selected text on definition text box. If no text is selected, it will have the same value as "Definitions" field.
• Dictionary Name: Name of the dictionary, e.g., "Kanjidic".
• Audio: Audio for the first reading of the mined word.
Expand All @@ -105,7 +105,7 @@ public static bool IsItVisible()
• Primary Spelling: It's the spelling you click to mine the name.
• Readings: Readings of the name.
• Alternative Spellings: Alternative spellings of the mined name.
• Definitions: Translations of the name. You can edit the definitions in the popup window by pressing Ctrl+Alt and clicking on the definitions text box with the left mouse button.
• Definitions: Translations of the name. You can edit the definitions in the popup window by pressing Insert key and clicking on the definitions text box with the left mouse button.
• Selected Definitions: The selected text on definition text box. If no text is selected, it will have the same value as "Definitions" field.
• Dictionary Name: Name of the dictionary, e.g., "JMnedict".
• Audio: Audio for the first reading of the mined word.
Expand Down

0 comments on commit ff05958

Please sign in to comment.