Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/1596b378967b29e59c81619e8f5627148e12eb0d?style=split&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge branch 'anatoly_dev' of github.com:Sankore/Sankore-3.1 into anatoly_dev

preferencesAboutTextFull
Ilia Ryabokon 13 years ago
commit 1596b37896
  1. 5
      src/gui/UBKeyboardPalette.cpp

@ -60,7 +60,10 @@ UBKeyboardPalette::UBKeyboardPalette(QWidget *parent)
createCtrlButtons(); createCtrlButtons();
nCurrentLocale = UBSettings::settings()->KeyboardLocale->get().toInt(); nCurrentLocale = UBSettings::settings()->KeyboardLocale->get().toInt();
setInput(locales[nCurrentLocale]); if (nCurrentLocale < 0 || nCurrentLocale >= nLocalesCount)
nCurrentLocale = 0;
if (locales!=NULL)
setInput(locales[nCurrentLocale]);
setContentsMargins( 22, 22, 22, 22 ); setContentsMargins( 22, 22, 22, 22 );

Loading…
Cancel
Save