Dominos icon indicating copy to clipboard operation
Dominos copied to clipboard

Progress - Select which types to show on each bar?

Open MaximusPM opened this issue 5 years ago • 1 comments

I really like the dual progress bar mode. It's paramount for my interface configuration to be perfectly aligned, I kinda have an OCD about it.

But with Azerite/Artifact power basically irrelevant now, there's no real need for it's bar.

What I did was to change

		Addon.ProgressBar:New("exp", {"xp", "reputation", "honor"}),
		Addon.ProgressBar:New("artifact", {"azerite", "artifact"})

to

		Addon.ProgressBar:New("exp", {"xp"}),
		Addon.ProgressBar:New("artifact", {"reputation", "honor"})

This way I have the XP bar display only xp and the "artifact" bar show reputation and honor.

My suggestion is to have an option to chose which of these progress types to show on each bar, so anyone can toggle to show whichever one they like on each bar, instead of being locked to showing xp/honor/reputation in one and only azerite/artifact which are irrelevant/obsolete in the other.

Maybe something like:

Bar 1: [X] xp [ ] reputation [ ] honor [ ] azerite Bar 2: [ ] xp [X] reputation [X] honor [ ] azerite

MaximusPM avatar Oct 20 '20 20:10 MaximusPM

You can actually have as many as you want. When I revisit the configuration UI I should implement the ability to add/remove bars

Addon.ProgressBar:New("exp", {"xp"}),
Addon.ProgressBar:New("rep", {"reputation"})
Addon.ProgressBar:New("honor", {"honor"})

Tuller avatar Oct 21 '20 22:10 Tuller