From c2f19fed24a062915d7b1370d126a69ebdedcc5c Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Tue, 21 Nov 2023 19:35:47 +0000 Subject: [PATCH] Fix: Widget without tooltip should use STR_NULL not STR_EMPTY. (#11482) --- src/genworld_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/genworld_gui.cpp b/src/genworld_gui.cpp index 3300f2ef1c..a49b58d8d7 100644 --- a/src/genworld_gui.cpp +++ b/src/genworld_gui.cpp @@ -212,7 +212,7 @@ static const NWidgetPart _nested_heightmap_load_widgets[] = { NWidget(NWID_HORIZONTAL), SetPIP(0, WidgetDimensions::unscaled.hsep_normal, 0), /* Heightmap name label. */ NWidget(WWT_TEXT, COLOUR_ORANGE), SetDataTip(STR_MAPGEN_HEIGHTMAP_NAME, STR_NULL), - NWidget(WWT_TEXT, COLOUR_ORANGE, WID_GL_HEIGHTMAP_NAME_TEXT), SetTextStyle(TC_ORANGE), SetDataTip(STR_JUST_RAW_STRING, STR_EMPTY), SetFill(1, 0), + NWidget(WWT_TEXT, COLOUR_ORANGE, WID_GL_HEIGHTMAP_NAME_TEXT), SetTextStyle(TC_ORANGE), SetDataTip(STR_JUST_RAW_STRING, STR_NULL), SetFill(1, 0), EndContainer(), /* Generation options. */