I have attached, below, an image that shows the difference between how a Layout on a tab is rendered in a window on an Ubuntu PC and on an Android phone.As you can see, part of the label-text near the top of the Layout is hidden behind the TabbedPanel on the Android phone, but not in the Ubuntu-window.Is this difference a known bug, or do I have to try to create a small piece of code that demonstrates/reproduces it?
--<Bug in TabbedPanle P1060295.JPG>
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-users+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kivy-users/d43fa136-9c8b-48c4-b3fb-d4cbd521941b%40googlegroups.com.
<Bug in TabbedPanle P1060295.JPG>
While it is certainly possible it is a bug, it looks like the Linux screen is longer than the android screen. As you make the Linux screen shorter, does the text get clipped by the top of the window?
Sent from my iPad
On Jan 20, 2020, at 2:13 PM, Henrik R. <henrik....@gmail.com> wrote:
--I have attached, below, an image that shows the difference between how a Layout on a tab is rendered in a window on an Ubuntu PC and on an Android phone.As you can see, part of the label-text near the top of the Layout is hidden behind the TabbedPanel on the Android phone, but not in the Ubuntu-window.Is this difference a known bug, or do I have to try to create a small piece of code that demonstrates/reproduces it?<Bug in TabbedPanle P1060295.JPG>
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-...@googlegroups.com.
While it is certainly possible it is a bug, it looks like the Linux screen is longer than the android screen. As you make the Linux screen shorter, does the text get clipped by the top of the window?
Sent from my iPad
On Jan 20, 2020, at 2:13 PM, Henrik R. <henrik....@gmail.com> wrote:
--I have attached, below, an image that shows the difference between how a Layout on a tab is rendered in a window on an Ubuntu PC and on an Android phone.As you can see, part of the label-text near the top of the Layout is hidden behind the TabbedPanel on the Android phone, but not in the Ubuntu-window.Is this difference a known bug, or do I have to try to create a small piece of code that demonstrates/reproduces it?<Bug in TabbedPanle P1060295.JPG>
You received this message because you are subscribed to the Google Groups "Kivy users support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kivy-...@googlegroups.com.
BoxLayout:
padding: '10dp'
spacing: '10dp'
size_hint: 1, 1
Label:
id: t_label
text_size: self.size
halign: 'left'
valign: 'top'
color: (0, 0, 0, 1)
text: 'Wait...' # Will be set later in Python, because the following doesn't work...:
# root.trial_id if (root.trial_id and self.parent.parent) else ''
self.train_box = TrainBox(self.config_data, self.trials_data, **kwargs)
# Place it on TabbedPanelItem:
self.ids.train_tab.add_widget(self.train_box)
self.label_text = f"Some text ... bla bla. " \
f"Some more text...."
self.top_label = TopLabel()
self.add_widget(self.top_label)
self.top_label.text = self.label_text
self.touch_input_screen = Touchtracer()
self.add_widget(self.touch_input_screen)
<TrainBox>:
orientation: 'vertical'
<TopLabel>:
id: t_label
text: 'Wait...' # Will be set later in Python, to avoid strange errors.
text_size: self.width, None
size: self.texture_size
size_hint_y: None
padding: (15,15)