dlangui icon indicating copy to clipboard operation
dlangui copied to clipboard

DMLedit bugs

Open nicesai opened this issue 6 years ago • 3 comments

In DMLedit example program, there are couple of bugs at line 261:

This is original: case IDEActions.FileSave: if (_content.modified) a.state = ACTION_STATE_ENABLED; else a.state = ACTION_STATE_DISABLED; return true;

Should be changed to: case IDEActions.FileSave: if (_editor.content.modified) a.state = ACTION_STATE_ENABLED; else a.state = ACTION_STATE_DISABLE; return true;

nicesai avatar Dec 05 '17 03:12 nicesai

just fixed see #525 and #528

triplejam avatar Dec 05 '17 17:12 triplejam

can I close it? is it fixed in recent label?

buggins avatar Dec 07 '17 04:12 buggins

@buggins It's not fixed in label v0.9.173

triplejam avatar Dec 07 '17 04:12 triplejam

Appears to be fixed as of now

GrimMaple avatar Jun 07 '23 20:06 GrimMaple