View | Details | Raw Unified | Return to bug 211682 | Differences between
and this patch

Collapse All | Expand All

(-)menu.c (-1 / +5 lines)
Lines 29-39 Link Here
29
#include "help.h"
29
#include "help.h"
30
30
31
#define MENU_LINES 12
31
#define MENU_LINES 12
32
#define MENU_COLS  38
32
#define MENU_COLS  45
33
33
34
#define MENU_CONTENTS \
34
#define MENU_CONTENTS \
35
                    "{[h]} online help\n" \
35
                    "{[h]} online help\n" \
36
		    "{[r]} rename machine\n" \
36
		    "{[r]} rename machine\n" \
37
                    "{[o]} toggle tag all machines (live only)\n" \
38
                    "{[O]} toggle tag all machines (live & dead)\n" \
37
                    "{[t]} tag all machines (live only)\n" \
39
                    "{[t]} tag all machines (live only)\n" \
38
                    "{[T]} tag all machines (live & dead)\n" \
40
                    "{[T]} tag all machines (live & dead)\n" \
39
                    "{[u]} untag all machines\n" \
41
                    "{[u]} untag all machines\n" \
Lines 100-105 Link Here
100
                }
102
                }
101
103
102
                break;
104
                break;
105
      case 'o': machmgr_toggle_tag_all(true); break;
106
      case 'O': machmgr_toggle_tag_all(false); break;
103
      case 't': machmgr_tag_all(true); break;
107
      case 't': machmgr_tag_all(true); break;
104
      case 'T': machmgr_tag_all(false); break;
108
      case 'T': machmgr_tag_all(false); break;
105
      case 'u': machmgr_untag_all(); break;
109
      case 'u': machmgr_untag_all(); break;

Return to bug 211682