]> Pileus Git - lackey/blobdiff - src/screen.c
Fix divider click bug
[lackey] / src / screen.c
index 1fdedc8680402e89910f88bab08f1a32e2e6185a..e10a54d8ec9b9b6b432bcce2a37b084a88a06f7f 100644 (file)
@@ -1,7 +1,25 @@
+/*
+ * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
+ * 
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * 
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
 #include <string.h>
 #include <ncurses.h>
 #include "main.h"
 #include "screen.h"
+#include "util.h"
 
 /* Types */
 typedef struct {
@@ -27,7 +45,7 @@ view_t views[] = {
        { "Help",     help_init,     help_draw,     help_run,     {KEY_F(8), '8', 'h', '?'} },
 };
 
-int active = 3;
+int active = 0;
 
 /* Local functions */
 void draw_header(void)
@@ -92,7 +110,7 @@ int screen_run(int key, mmask_t btn, int row, int col)
                int start = 1;
                for (int i = 0; i < N_ELEMENTS(views); i++) {
                        int end = start + strlen(views[i].name) - 1;
-                       if (start <= col && col <= end)
+                       if (start <= col && col <= end && views[i].draw)
                                return screen_set(i);
                        start = end + 2;
                }