diff --git a/ivette/src/renderer/Controller.tsx b/ivette/src/renderer/Controller.tsx
index 0df250c7a843b2660fd03a417d3567f79cb136e5..700b22beca73f810e03f718ef1d95485096eb9a3 100644
--- a/ivette/src/renderer/Controller.tsx
+++ b/ivette/src/renderer/Controller.tsx
@@ -155,9 +155,7 @@ const RenderConsole = () => {
   const [cursor, setCursor] = React.useState(-1);
   const [H0, setH0] = Dome.useState('Controller.history', []);
   const [isEmpty, setEmpty] = React.useState(true);
-  Dome.useEmitter(editor, 'change', () => {
-    setEmpty(editor.getValue().trim() === '');
-  });
+  const [noTrash, setNoTrash] = React.useState(true);
 
   // Cope with merge settings that keeps previous array entries (BUG in DOME)
   const history = Array.isArray(H0) ? H0.filter((h) => h !== '') : [];
@@ -166,6 +164,12 @@ const RenderConsole = () => {
     setH0(n < 50 ? hs.concat(Array(50 - n).fill('')) : hs);
   };
 
+  Dome.useEmitter(editor, 'change', () => {
+    const cmd = editor.getValue().trim();
+    setEmpty(cmd === '');
+    setNoTrash(cursor === 0 && history.length === 1 && cmd === history[0]);
+  });
+
   const doReload = () => {
     const cfg = Server.getConfig();
     const hst = insertConfig(history, cfg);
@@ -210,7 +214,8 @@ const RenderConsole = () => {
 
   const doRemove = () => {
     const n = history.length;
-    if (n > 1) {
+    if (n <= 1) doReload();
+    else {
       const hst = history.slice();
       const pad = scratch.current;
       hst.splice(cursor, 1);
@@ -219,11 +224,6 @@ const RenderConsole = () => {
       const next = cursor > 0 ? cursor - 1 : 0;
       editor.setValue(pad[next]);
       setCursor(next);
-    } else {
-      // Do not share the two arrays!
-      setHistory(['']);
-      scratch.current = [''];
-      editor.clear();
     }
   };
 
@@ -235,7 +235,7 @@ const RenderConsole = () => {
   let LABEL: string | JSX.Element = 'Console';
   if (edited) {
     LABEL = (
-      <Label title="Rank in history">
+      <Label title="History (last command comes first)">
         Command
         <span className="controller-rank">
           {1 + cursor} / {n}
@@ -249,15 +249,16 @@ const RenderConsole = () => {
         <IconButton
           icon="TRASH"
           display={edited}
+          disabled={noTrash}
           onClick={doRemove}
-          title="Discard command from History"
+          title="Discard command from history (irreversible)"
         />
         <Space />
         <IconButton
           icon="RELOAD"
           display={edited}
           onClick={doReload}
-          title="Discard edited commands"
+          title="Discard changes"
         />
         <IconButton
           icon="MEDIA.PREV"