Merge with develop
--HG-- branch : compatibility-develop
This commit is contained in:
commit
719e6f6e85
2 changed files with 9 additions and 0 deletions
|
@ -5806,3 +5806,10 @@ NLMISC_COMMAND(playedTime, "Display character played time", "")
|
||||||
CInterfaceManager::getInstance()->displaySystemInfo(msg, "AROUND");
|
CInterfaceManager::getInstance()->displaySystemInfo(msg, "AROUND");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NLMISC_COMMAND(version, "Display client version", "")
|
||||||
|
{
|
||||||
|
ucstring msg = getDebugVersion();
|
||||||
|
CInterfaceManager::getInstance()->displaySystemInfo(msg, "AROUND");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
|
@ -31,6 +31,8 @@ CMainWindow::CMainWindow():QMainWindow(), m_statusLabel(NULL)
|
||||||
{
|
{
|
||||||
setupUi(this);
|
setupUi(this);
|
||||||
|
|
||||||
|
setWindowFlags(windowFlags() & ~Qt::WindowMaximizeButtonHint);
|
||||||
|
|
||||||
// downloader
|
// downloader
|
||||||
m_downloader = new CDownloader(this);
|
m_downloader = new CDownloader(this);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue