Revivius / nb-darcula

Darcula LAF for NetBeans
277 stars 83 forks source link

Progressbar in statusbar has no border #76

Open markiewb opened 8 years ago

markiewb commented 8 years ago

unnamed 2

Revivius commented 8 years ago

@markiewb; border is there but is clipped, I think it is due to size of progress text. Let me check.

markiewb commented 8 years ago

Perhaps resizing the progressbar height via reflection will do the job. Or adding margins

Revivius commented 7 years ago

@markiewb; I think this is due to custom LayoutManager used by he component that contains the progress bar. Check:

http://hg.netbeans.org/main/file/tip/progress.ui/src/org/netbeans/modules/progress/ui/ListComponent.java

bar.setBounds(barOffset, UPPERMARGIN, offset - barOffset, mainHeight);

how to change that with reflection ?