diff --git gui/halt_info.cc gui/halt_info.cc index 09132d8bc..f7f3a32b9 100644 --- gui/halt_info.cc +++ gui/halt_info.cc @@ -604,7 +604,7 @@ void gui_halt_detail_t::update_connections( halthandle_t halt ) if( !connections.empty() ) { gui_label_buf_t *lb = new_component_span(2); - lb->buf().append(" ·"); + lb->buf().append(" · "); const goods_desc_t* info = goods_manager_t::get_info_catg_index(i); // If it is a special freight, we display the name of the good, otherwise the name of the category. lb->buf().append(translator::translate(info->get_catg()==0 ? info->get_name() : info->get_catg_name() ) ); @@ -622,8 +622,8 @@ void gui_halt_detail_t::update_connections( halthandle_t halt ) sorted.insert_unique_ordered(conn, gui_halt_detail_t::compare_connection); } } - FOR(vector_tpl, const& conn, sorted) { + FOR(vector_tpl, const& conn, sorted) { has_stops = true; button_t *pb = new_component();