mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 832561 - Dont show Pin Sites option on empty sites. r=lucasr
This commit is contained in:
parent
052a5b450c
commit
85c040f18e
@ -213,6 +213,8 @@ public class AboutHomeContent extends ScrollView
|
||||
if (holder.isPinned()) {
|
||||
menu.findItem(R.id.abouthome_topsites_pin).setVisible(false);
|
||||
} else {
|
||||
if (TextUtils.isEmpty(holder.getUrl()))
|
||||
menu.findItem(R.id.abouthome_topsites_pin).setVisible(false);
|
||||
menu.findItem(R.id.abouthome_topsites_unpin).setVisible(false);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user