project panel: select autofolded entries (#17520)

Closes #17252

Release Notes:

- Intermediate auto-folded project entries can now be selected and acted
upon (removed, renamed, cut, pasted).
This commit is contained in:
Piotr Osiewicz 2024-09-09 13:22:16 +02:00 committed by GitHub
parent 174e125686
commit 66ef318823
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 238 additions and 32 deletions

View file

@ -170,6 +170,11 @@ impl LabelCommon for Label {
self.base = self.base.alpha(alpha);
self
}
fn underline(mut self, underline: bool) -> Self {
self.base = self.base.underline(underline);
self
}
}
impl RenderOnce for Label {