hdfview icon indicating copy to clipboard operation
hdfview copied to clipboard

Missing Yes/No button on Mac for deleting groups/datasets.

Open atharvaaalok opened this issue 7 months ago • 1 comments

When I click delete on an object in the file I see the following window pop-up.

Image

Fortunately, just hitting enter seems to be working.

atharvaaalok avatar May 30 '25 16:05 atharvaaalok

That is a difficult problem because the buttons are created by the SWT system.

public static boolean showConfirm(Shell parent, String title, String confMsg)
     return MessageDialog.openConfirm(parent, dlgTitlePrefix + dlgTitleSuffix,
                                      (confMsg == null) ? "UNKNOWN" : confMsg);

Perhaps getting a new SWT jar file and replacing it in the HDFView install location? Start at https://eclipse.dev/eclipse/swt/

byrnHDF avatar Jun 04 '25 22:06 byrnHDF