Changeset - r28168:c8c962cbc936
[Not reviewed]
master
0 1 0
Peter Nelson - 7 months ago 2023-11-21 19:35:47
peter1138@openttd.org
Fix: Widget without tooltip should use STR_NULL not STR_EMPTY. (#11482)
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/genworld_gui.cpp
Show inline comments
 
@@ -212,7 +212,7 @@ static const NWidgetPart _nested_heightm
 
			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. */
0 comments (0 inline, 0 general)