Compare commits
No commits in common. "1d406b0c7e0ab7beff84dd7066793b14ea455e08" and "717251ca5ef79650ee418119474a47c039b2b8d7" have entirely different histories.
1d406b0c7e
...
717251ca5e
@ -2074,6 +2074,7 @@ namespace Volian.Controls.Library
|
|||||||
case "Paste Procedure After":
|
case "Paste Procedure After":
|
||||||
case "Paste Section":
|
case "Paste Section":
|
||||||
case "Paste Section Before":
|
case "Paste Section Before":
|
||||||
|
case "Replace Existing Section":
|
||||||
case "Paste Section After":
|
case "Paste Section After":
|
||||||
case "Paste Step":
|
case "Paste Step":
|
||||||
case "Paste Step Before":
|
case "Paste Step Before":
|
||||||
@ -2082,18 +2083,8 @@ namespace Volian.Controls.Library
|
|||||||
case "Paste Subsection":
|
case "Paste Subsection":
|
||||||
tv_NodePaste(mi.Text);
|
tv_NodePaste(mi.Text);
|
||||||
break;
|
break;
|
||||||
case "Replace Existing Section":
|
|
||||||
//C2025-032 - Add check if user is sure want to paste replace section
|
|
||||||
DialogResult ovewriteExPS = FlexibleMessageBox.Show("This will overwrite the selected section with the one you copied, would you like to overwrite it?\r\n\r\nSelecting 'Cancel' will cancel the paste action.", "Overwrite the section?", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
|
|
||||||
|
|
||||||
if (ovewriteExPS == DialogResult.Cancel) break;
|
|
||||||
else
|
|
||||||
{
|
|
||||||
tv_NodePaste(mi.Text);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "Replace Existing Procedure":
|
case "Replace Existing Procedure":
|
||||||
DialogResult ovewriteEx = FlexibleMessageBox.Show("This will overwrite the selected procedure with the one you copied, would you like to overwrite it?\r\n\r\nSelecting 'Cancel' will cancel the paste action.", "Overwrite the procedure?", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);// == DialogResult.Yes;
|
DialogResult ovewriteEx = FlexibleMessageBox.Show("This will overwrite the selected procedure with then one you copied, would you like to overwrite it?\r\n\r\nSelecting 'Cancel' will cancel the paste action.", "Overwrite the procedure?", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);// == DialogResult.Yes;
|
||||||
|
|
||||||
if (ovewriteEx == DialogResult.Cancel) break;
|
if (ovewriteEx == DialogResult.Cancel) break;
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user