Regression test: Fix for window size

p4#: 21479
This commit is contained in:
CeetronResInsight 2013-04-29 13:34:36 +02:00
parent 5cc4c9a231
commit 35759e081d

View File

@ -56,7 +56,11 @@ int main(int argc, char *argv[])
RiuMainWindow window;
QString platform = cvf::System::is64Bit() ? "(64bit)" : "(32bit)";
window.setWindowTitle("ResInsight " + platform);
window.resize(1000, 800);
#ifdef CVF_LINUX
window.resize(1000, 806);
#else
window.resize(1000, 800);
#endif
window.show();
if (app.parseArguments())