1
0
Fork 0

Change #10255: Reduce basic thickness of linkgraph GUI lines (#10410)

From 3px to 2px (multiplied by UI scale).
pull/10424/head
merni-ns 2023-01-25 23:36:19 +05:30 committed by Michael Lutz
parent 7e61264e3c
commit 1cb459de3f
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}