diff --git a/src/gui/widget/msgbox.cpp b/src/gui/widget/msgbox.cpp index 9e704ef4f..2f83921fa 100644 --- a/src/gui/widget/msgbox.cpp +++ b/src/gui/widget/msgbox.cpp @@ -834,11 +834,11 @@ int ShowMsg2UTF( const char * const Title, int mode = CMsgBox::SCROLL | CMsgBox::TITLE | CMsgBox::FOOT | - CMsgBox::BORDER;// | + CMsgBox::BORDER | + CMsgBox::AUTO_HIGH; //CMsgBox::NO_AUTO_LINEBREAK | //CMsgBox::CENTER | //CMsgBox::AUTO_WIDTH | - //CMsgBox::AUTO_HIGH; CBox position ( g_settings.screen_StartX+30, g_settings.screen_StartY+30, g_settings.screen_EndX - g_settings.screen_StartX-60, diff --git a/src/neutrino.cpp b/src/neutrino.cpp index 19abd9e38..bc54c9a04 100644 --- a/src/neutrino.cpp +++ b/src/neutrino.cpp @@ -1465,7 +1465,7 @@ void CNeutrinoApp::SetChannelMode(int newmode) INFO("newmode %d sort old %d new %d", newmode, sortmode[newmode], g_settings.channellist_sort_mode); if(newmode != LIST_MODE_FAV && sortmode[newmode] != g_settings.channellist_sort_mode && g_settings.channellist_sort_mode < CChannelList::SORT_MAX) { sortmode[newmode] = g_settings.channellist_sort_mode; - INFO("sorting, mode %d, %d bouquets\n", g_settings.channellist_sort_mode, (int)bouquetList->Bouquets.size()); + INFO("sorting, mode %d, %d bouquets", g_settings.channellist_sort_mode, (int)bouquetList->Bouquets.size()); for (uint32_t i = 0; i < bouquetList->Bouquets.size(); i++) { if(g_settings.channellist_sort_mode == CChannelList::SORT_ALPHA) bouquetList->Bouquets[i]->channelList->SortAlpha();