mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
2000-04-15 Timur Bakeyev <mc@bat.ru>
* dlg.c: Commited at last patch, that fixes screwed up right panel in a long format. Occasionaly, all my colors problems also gone. All thanks to Norbert Warmuth <nwarmuth@privat.circular.de>, who tracked down the problem, blames to me and Federico :)
This commit is contained in:
parent
ec83d4571e
commit
b04694fe79
@ -1,3 +1,10 @@
|
||||
2000-04-15 Timur Bakeyev <mc@bat.ru>
|
||||
|
||||
* dlg.c: Commited at last patch, that fixes screwed up right panel in
|
||||
a long format. Occasionaly, all my colors problems also gone. All thanks
|
||||
to Norbert Warmuth <nwarmuth@privat.circular.de>, who tracked down the
|
||||
problem, blames to me and Federico :)
|
||||
|
||||
2000-04-12 Timur Bakeyev <mc@bat.ru>
|
||||
|
||||
* widget.c ([forward|backward]_word): Changed one more time - now it
|
||||
|
@ -414,12 +414,11 @@ void dlg_broadcast_msg_to (Dlg_head *h, int message, int reverse, int flags)
|
||||
was_panel = FALSE;
|
||||
#endif
|
||||
do {
|
||||
wi = p;
|
||||
if (reverse)
|
||||
p = p->prev;
|
||||
else
|
||||
p = p->next;
|
||||
|
||||
wi = p;
|
||||
/* if (p->widget->options & flags) */
|
||||
#ifdef HAVE_GNOME
|
||||
if (is_a_panel (wi->widget))
|
||||
|
@ -527,10 +527,10 @@ load_mode (char *section)
|
||||
static char *
|
||||
do_load_string (char *s, char *ss, char *def)
|
||||
{
|
||||
char *buffer = g_malloc (128);
|
||||
char *buffer = g_malloc (BUF_SMALL);
|
||||
char *p;
|
||||
|
||||
load_string (s, ss, def, buffer, 128);
|
||||
load_string (s, ss, def, buffer, BUF_SMALL);
|
||||
|
||||
p = g_strdup (buffer);
|
||||
g_free (buffer);
|
||||
|
Loading…
Reference in New Issue
Block a user