Skip to content
1 change: 1 addition & 0 deletions docs/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ Template for new versions:

## Misc Improvements
- `buildingplan`: added a slider on the weapontrap overlay
- `buildingplan`: added a small tooltip text about renaming favorites in the UI

## Documentation

Expand Down
9 changes: 7 additions & 2 deletions plugins/lua/buildingplan/planneroverlay.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1009,7 +1009,7 @@ function PlannerOverlay:init()
is_selected_fn=make_is_selected_filter('0') },
widgets.CycleHotkeyLabel {
view_id='slot_select',
frame={b=0, l=2},
frame={b=2, l=2},
key='CUSTOM_X',
key_back='CUSTOM_SHIFT_X',
label='next/previous slot',
Expand All @@ -1019,11 +1019,16 @@ function PlannerOverlay:init()
on_change=function(val) self.selected_favorite = val end,
},
widgets.HotkeyLabel{
frame={b=0, l=28},
frame={b=2, l=28},
label="set/apply selected",
key='CUSTOM_Y',
on_activate=function () self:save_restore_filter(self.selected_favorite) end,
},
widgets.TooltipLabel {
frame={b=0, l=2},
show_tooltip=true,
text="Shift+click to edit the label of a favorite",
},

}
}
Expand Down
Loading