We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e58cc4 commit e59620eCopy full SHA for e59620e
main.py
@@ -1,6 +1,6 @@
1
import os
2
3
-#os.environ["KIVY_NO_CONSOLELOG"] = "1"
+os.environ["KIVY_NO_CONSOLELOG"] = "1"
4
os.environ["PYTHONPYCACHEPREFIX"] = "$TMPDIR"
5
6
from kivy.uix.floatlayout import FloatLayout
my_kivy/ui_object.py
@@ -70,7 +70,8 @@ def addresseStreet(self):
70
border_width=1,
71
border_color=(0, 0, 0, 1)
72
)
73
- self.street_entry = TextInput(
+ self.street_entry = TextInput(
74
+ halign='center', multiline='false',
75
size_hint=(.249, .05), pos_hint={'x': 0, 'y': .85})
76
self.street_entry.bind(text=self.kU.on_text)
77
@@ -89,6 +90,7 @@ def codePost(self):
89
90
91
def codePost2(self):
92
self.post_code_entry = my_widgets.MaxLengthInput(
93
94
size_hint=(.082333333333, .05),
95
pos_hint={'x': .25, 'y': .85}
96
@@ -161,6 +163,7 @@ def actionRadius(self):
161
163
162
164
165
self.radius_entry = TextInput(
166
167
size_hint=(.16566667, .05), pos_hint={'x': .5, 'y': .85})
168
self.radius_entry.bind(text=self.kU.on_text)
169
0 commit comments