Closed
Bug 1056012
Opened 11 years ago
Closed 11 years ago
Split ShapedButton into PhoneTabsButton and TabletTabsButton
Categories
(Firefox for Android Graveyard :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 34
People
(Reporter: lucasr, Assigned: lucasr)
References
Details
Attachments
(1 file)
|
14.35 KB,
patch
|
mcomella
:
review+
|
Details | Diff | Splinter Review |
It doesn't make sense to keep them together in ShapedButton anymore as the curve shapes are different now.
| Assignee | ||
Comment 1•11 years ago
|
||
| Assignee | ||
Comment 2•11 years ago
|
||
Comment on attachment 8475865 [details] [diff] [review]
Split ShapedButton into PhoneTabsButton and TabletTabsButton (r=mcomella)
I have to say, I'm really not a fan of how the whole ShapedButton/CanvasDelegate is structured. This patch simply separates the curve shape implementation between tablet and phones.
Attachment #8475865 -
Flags: review?(michael.l.comella)
Comment on attachment 8475865 [details] [diff] [review]
Split ShapedButton into PhoneTabsButton and TabletTabsButton (r=mcomella)
Review of attachment 8475865 [details] [diff] [review]:
-----------------------------------------------------------------
::: mobile/android/base/toolbar/BackButton.java
@@ -16,5 @@
> import android.graphics.drawable.StateListDrawable;
> import android.util.AttributeSet;
>
> public class BackButton extends ShapedButton {
> - private Path mPath;
Why did you delete this member? It is used in onSizeChanged.
Attachment #8475865 -
Flags: review?(michael.l.comella) → review-
Comment on attachment 8475865 [details] [diff] [review]
Split ShapedButton into PhoneTabsButton and TabletTabsButton (r=mcomella)
Review of attachment 8475865 [details] [diff] [review]:
-----------------------------------------------------------------
Better yet, r+, provided you remove the mPath removal in BackButton.
Attachment #8475865 -
Flags: review- → review+
| Assignee | ||
Comment 5•11 years ago
|
||
(In reply to Michael Comella (:mcomella) from comment #4)
> Comment on attachment 8475865 [details] [diff] [review]
> Split ShapedButton into PhoneTabsButton and TabletTabsButton (r=mcomella)
>
> Review of attachment 8475865 [details] [diff] [review]:
> -----------------------------------------------------------------
>
> Better yet, r+, provided you remove the mPath removal in BackButton.
Classic example that doing *just a bit* more than the intended change causes confusion :-) I made mPath protected in ShapedButton to avoid redundant Path instances in subclasses. mPath is not needed anymore in BackButton. I should have changed BackButton in a separate patch to make this clearer.
| Assignee | ||
Comment 6•11 years ago
|
||
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 34
Updated•5 years ago
|
Product: Firefox for Android → Firefox for Android Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•