Skip to content

Commit

Permalink
fix(qchat): edit geojson item text
Browse files Browse the repository at this point in the history
  • Loading branch information
gounux committed Oct 27, 2024
1 parent e9f100a commit 0b95b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qtribu/gui/qchat_tree_widget_items.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ def liked_message(self) -> str:
layer_name = self.message.layer_name
nb_features = len(self.message.geojson["features"])
crs = self.message.crs_authid
return f"<'{layer_name}' layer: #{nb_features} features using CRS {crs}>"
return f'<layer "{layer_name}": {nb_features} features, CRS={crs}>'

@property
def can_be_copied_to_clipboard(self) -> bool:
Expand Down

0 comments on commit 0b95b42

Please sign in to comment.