mirror of
https://github.com/cryptomator/cryptomator.git
synced 2026-05-21 20:21:27 +00:00
Use proper icon for in-use event
This commit is contained in:
@@ -62,6 +62,7 @@ public enum FontAwesome5Icon {
|
||||
TRASH("\uF1F8"), //
|
||||
UNLINK("\uf127"), //
|
||||
USER_COG("\uf4fe"), //
|
||||
USER_LOCK("\uf502"), //
|
||||
WRENCH("\uF0AD"), //
|
||||
WINDOW_MINIMIZE("\uF2D1"), //
|
||||
;
|
||||
|
||||
@@ -132,7 +132,7 @@ public class EventListCellController implements FxController {
|
||||
}
|
||||
|
||||
private void adjustToFileInUseEvent(FileIsInUseEvent fiiue) {
|
||||
eventIcon.setValue(FontAwesome5Icon.LOCK_OPEN);
|
||||
eventIcon.setValue(FontAwesome5Icon.USER_LOCK);
|
||||
eventMessage.setValue(resourceBundle.getString("eventView.entry.inUse.message"));
|
||||
var indexFileName = fiiue.cleartextPath().lastIndexOf("/");
|
||||
eventDescription.setValue(fiiue.cleartextPath().substring(indexFileName + 1));
|
||||
|
||||
Reference in New Issue
Block a user