Skip to content

Commit

Permalink
Change #10255: Reduce basic thickness of linkgraph GUI lines (#10410)
Browse files Browse the repository at this point in the history
From 3px to 2px (multiplied by UI scale).
  • Loading branch information
merni-ns committed Jan 25, 2023
1 parent 01a2449 commit 2d0c1ff
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 2d0c1ff

Please sign in to comment.