1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 16:40:26 +02:00

Fixed issue typing '/'

This commit is contained in:
Brian Fiete 2021-12-22 09:55:52 -05:00
parent ad46ac81e5
commit 0cd0c8905c

View file

@ -3393,7 +3393,7 @@ namespace IDE.ui
return;
}
if ((keyChar == '/') && (ToggleComment()))
if ((keyChar == '/') && (HasSelection()) && (ToggleComment()))
{
return;
}