As I suggested earlier the best solution is probably to try narrowing the GUIs a bit, and maybe move them slightly closer to the dials as well.
The bottom of the hud.plist looks like this
Code: Select all
message_gui =
{
width = 132;
height = 125;
x = 335;
y = 65;
y_origin = -1;
row_height = 12;
};
comm_log_gui =
{
width = 132;
height = 100;
x = -335;
y = 58;
y_origin = -1;
row_height=12;
};
multi_function_displays = (
{
width = 198;
height = 132;
x = -300;
y = -72;
y_origin = 1;
},
{
width = 198;
height = 132;
x = 300;
y = -72;
y_origin = 1;
}
);
// scanner_non_linear = yes;
// scanner_ultra_zoom = yes;
}
Code: Select all
message_gui =
{
width = 125;
height = 125;
x = 330;
y = 65;
y_origin = -1;
row_height = 12;
};
comm_log_gui =
{
width = 125;
height = 100;
x = -330;
y = 58;
y_origin = -1;
row_height=12;
};
multi_function_displays = (
{
width = 198;
height = 132;
x = -300;
y = -72;
y_origin = 1;
},
{
width = 198;
height = 132;
x = 300;
y = -72;
y_origin = 1;
}
);
// scanner_non_linear = yes;
// scanner_ultra_zoom = yes;
}
Has anybody else had this problem?