Exemplo n.º 1
0
 private void insertIntoTextToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (keystrokes == null)
     {
         return;
     }
     if (keystrokes[overFontChar] == "")
     {
         dialoguesEditor.InsertIntoDialogueText("[" + overFontChar + "]");
     }
     else
     {
         dialoguesEditor.InsertIntoDialogueText(keystrokes[overFontChar]);
     }
 }