Ticket #1561: fixed wrong position of select panel encoding dialog.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2009-08-30 18:11:20 +04:00
parent 17c5c22da8
commit 4881dd7c90

View File

@ -2702,10 +2702,16 @@ set_panel_encoding (WPanel *panel)
char *cd_path;
#ifdef HAVE_CHARSET
const char *errmsg;
int offset;
int r;
int width = (panel->widget.x)? panel->widget.cols : panel->widget.cols * (-1);
r = select_charset (width, 0, source_codepage, FALSE);
if (horizontal_split) {
offset = (get_current_index () != 0) ? panel->widget.lines : -panel->widget.lines;
r = select_charset (0, offset, source_codepage, FALSE);
} else {
offset = (get_current_index () != 0) ? panel->widget.cols : -panel->widget.cols;
r = select_charset (offset, 0, source_codepage, FALSE);
}
if (r == SELECT_CHARSET_CANCEL)
return; /* Cancel */