Skip to content

Commit

Permalink
Change OpenTTD#10255, OpenTTD#10064: Reduce basic thickness of linkgr…
Browse files Browse the repository at this point in the history
…aph GUI lines

From 3px to 2px (multiplied by UI scale).
  • Loading branch information
merni-ns committed Jan 25, 2023
1 parent 01a2449 commit 60ad3a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main_gui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ struct MainWindow : Window
NWidgetViewport *nvp = this->GetWidget<NWidgetViewport>(WID_M_VIEWPORT);
nvp->InitializeViewport(this, TileXY(32, 32), ScaleZoomGUI(ZOOM_LVL_VIEWPORT));

this->viewport->overlay = new LinkGraphOverlay(this, WID_M_VIEWPORT, 0, 0, 3);
this->viewport->overlay = new LinkGraphOverlay(this, WID_M_VIEWPORT, 0, 0, 2);
this->refresh.SetInterval(LINKGRAPH_DELAY);
}

Expand Down

0 comments on commit 60ad3a4

Please sign in to comment.