Skip to content

Commit

Permalink
remove unneded ref
Browse files Browse the repository at this point in the history
  • Loading branch information
frewsxcv committed Nov 25, 2024
1 parent d4bab6f commit 1a3bbfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rgis-ui/src/manage_layer_window.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ impl ManageLayerWindow<'_> {
ui.label(&layer.name);
ui.end_row();
ui.label("CRS");
ui.label(&format!("EPSG {}", layer.crs_epsg_code));
ui.label(format!("EPSG {}", layer.crs_epsg_code));
ui.end_row();
if layer.geom_type.has_fill() {
if let Some(fill) = layer.color.fill {
Expand Down

0 comments on commit 1a3bbfe

Please sign in to comment.