Sfoglia il codice sorgente

fixup! Add popup confirmation when clicking "Delete All" in cdb props

Leonardo Jeanteur 4 anni fa
parent
commit
fae4d3d5fd
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      hide/comp/cdb/Editor.hx

+ 1 - 1
hide/comp/cdb/Editor.hx

@@ -1024,7 +1024,7 @@ class Editor extends Component {
 			menu.insert(1,{ label : "Edit all", click : function() editScripts(table,col) });
 			menu.insert(1,{ label : "Edit all", click : function() editScripts(table,col) });
 		if( table.displayMode == Properties ) {
 		if( table.displayMode == Properties ) {
 			menu.push({ label : "Delete All", click : function() {
 			menu.push({ label : "Delete All", click : function() {
-				if( !ide.confirm("Delete all rows?") )
+				if( !ide.confirm("Delete row for all Props?") )
 					return;
 					return;
 				beginChanges(true);
 				beginChanges(true);
 				table.sheet.deleteColumn(col.name);
 				table.sheet.deleteColumn(col.name);