Skip to content

Commit

Permalink
[window] disable preferring second monitor
Browse files Browse the repository at this point in the history
new window should not preferrably appear on secondary monitor
  • Loading branch information
tgfrerer committed Jan 30, 2025
1 parent 219aede commit ef88812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/le_window/le_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ static void window_setup( le_window_o* self, const le_window_settings_o* setting
int windowX = 100;
int windowY = 100;

if ( monitorCount > 1 ) {
if ( false && monitorCount > 1 ) {
// if there is more than one monitor, we want our window to appear on the secondary monitor by default.
glfwGetMonitorPos( monitors[ 1 ], &windowX, &windowY );

Expand Down

0 comments on commit ef88812

Please sign in to comment.