Deselect objects

Hello, does anyone know if there is a shortcut in corel draw that makes "Deselect" the same as Photoshop's ctrl+D?

thank you!

Parents
No Data
Reply
  • All of my comments here apply to the full version of CorelDRAW on a Windows system.

    As Myron notes, the Esc key can be used to clear the selection.

    I'm not aware of a Command for that in workspace customization where you could assign a shortcut key of your choice. If you do it using a little VBA macro, then that sub can be assigned a keyboard shortcut (including Ctrl+D, which by default is used for the Duplicate command).

    Sub clear_selection()
    
        If Not ActiveDocument Is Nothing Then
            ActiveDocument.ClearSelection
        End If
    End Sub
    

    If you have a lot of "muscle memory" for using Ctrl+D for that, then that might be worth doing.

Children
No Data