mirror of https://github.com/kivy/kivy.git
Merge pull request #4732 from KeyWeeUsr/actionbar_icon
Hide Image if no app_icon in ActionPrevious
This commit is contained in:
commit
8e44b5f258
|
@ -659,7 +659,7 @@
|
|||
width:
|
||||
(self.temp_width if self.temp_height <= self.height else \
|
||||
self.temp_width * (self.height / self.temp_height)) \
|
||||
if self.texture else dp(8)
|
||||
if self.texture and root.app_icon else 0
|
||||
mipmap: root.mipmap
|
||||
Widget:
|
||||
size_hint_x: None
|
||||
|
|
Loading…
Reference in New Issue