mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 07:16:53 -06:00
Regression test: Fix for window size
p4#: 21479
This commit is contained in:
parent
5cc4c9a231
commit
35759e081d
@ -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())
|
||||
|
Loading…
Reference in New Issue
Block a user