summaryrefslogtreecommitdiff
path: root/misc/mc/files
diff options
context:
space:
mode:
authorMax Khon <fjoe@FreeBSD.org>2011-01-20 08:55:15 +0000
committerMax Khon <fjoe@FreeBSD.org>2011-01-20 08:55:15 +0000
commit9e4c86cfae9f420a77dc6ec96b3ce015067c0232 (patch)
treedfd1c8a02e1972b1ea8009fb8d4f875f93ae38f6 /misc/mc/files
parent- Chase allegro-devel shlib change (diff)
- Update to 4.7.5
- Obey WITHOUT_X11 PR: 154154 Submitted by: Dima Panov Feature safe: yes
Notes
Notes: svn path=/head/; revision=268018
Diffstat (limited to 'misc/mc/files')
-rw-r--r--misc/mc/files/patch-src-dialog.c58
1 files changed, 0 insertions, 58 deletions
diff --git a/misc/mc/files/patch-src-dialog.c b/misc/mc/files/patch-src-dialog.c
deleted file mode 100644
index 55d276ee66e9..000000000000
--- a/misc/mc/files/patch-src-dialog.c
+++ /dev/null
@@ -1,58 +0,0 @@
---- src/dialog.c.orig 2010-10-20 20:19:09.000000000 +0700
-+++ src/dialog.c 2010-10-20 20:23:32.000000000 +0700
-@@ -110,6 +110,9 @@
- {
- int space;
-
-+ if (h->state != DLG_ACTIVE)
-+ return;
-+
- space = (h->flags & DLG_COMPACT) ? 0 : 1;
-
- tty_setcolor (DLG_NORMALC (h));
-@@ -317,7 +320,7 @@
- void
- dlg_erase (Dlg_head * h)
- {
-- if (h != NULL)
-+ if (h != NULL && h->state == DLG_ACTIVE)
- tty_fill_region (h->y, h->x, h->lines, h->cols, ' ');
- }
-
-@@ -458,7 +461,7 @@
- {
- /* cannot focus disabled widget ... */
-
-- if (h->current != NULL)
-+ if (h->current != NULL && h->state == DLG_ACTIVE)
- {
- Widget *current = (Widget *) h->current->data;
-
-@@ -478,7 +481,7 @@
- {
- /* ... but can unfocus disabled widget */
-
-- if (h->current != NULL)
-+ if (h->current != NULL && h->state == DLG_ACTIVE)
- {
- Widget *current = (Widget *) h->current->data;
-
-@@ -649,7 +652,7 @@
- {
- GList *p = h->current;
-
-- if (p != NULL)
-+ if (p != NULL && h->state == DLG_ACTIVE)
- {
- Widget *w;
-
-@@ -683,6 +686,9 @@
- void
- dlg_redraw (Dlg_head * h)
- {
-+ if (h->state != DLG_ACTIVE)
-+ return;
-+
- if (h->winch_pending)
- {
- h->winch_pending = FALSE;