Updates the settings of an existing custom dialog window.
Ensures the dialog reflects the latest changes.
planetcnc.dlg_update(handle)
#! /usr/bin/env python import planetcnc # Update an existing dialog with a known handle dialog_handle = "MyDialogHandle" planetcnc.dlg_update(dialog_handle) print("Dialog updated.")