update landscape

update
runette 3 years ago
parent a1bbeba028
commit 472fd5fe94
  1. 1
      landscape.json
  2. BIN
      landscape/base_library.zip
  3. 4
      landscape/filter_adapters/assign_adapter.kv
  4. BIN
      landscape/landscape.exe
  5. 6
      landscape/layer_adapters/layer_ui_components.kv
  6. BIN
      landscape/win32/pywintypes310.dll

@ -0,0 +1 @@
{"user": "gBlM2eYPLHcpy39crf2rHQpT8MJ3"}

Binary file not shown.

@ -53,5 +53,5 @@
size_hint_x: 0.4
font_style: "Caption"
DetailBox:
text: root.where_text
on_text: root.where_text = self.text
text: root.where
on_text: root.where = self.text

Binary file not shown.

@ -15,7 +15,7 @@
MySwitch:
id: multibandcolor
active: root.colorMode == "MultibandColor"
on_active: root.colorMode = "MultibandColor"
on_active: root.colorMode = "MultibandColor" if self.active else root.colorMode
MDBoxLayout:
orientation: "vertical"
Heading1:
@ -66,7 +66,7 @@
MySwitch:
id: singlebandcolor
active: root.colorMode == "SinglebandColor"
on_active: root.colorMode = "SinglebandColor"
on_active: root.colorMode = "SinglebandColor" if self.active else root.colorMode
Widget:
MDBoxLayout:
orientation: "vertical"
@ -100,7 +100,7 @@
MySwitch:
id: singelbandgrey
active: root.colorMode == "SinglebandGrey"
on_active: root.colorMode = "SinglebandGrey"
on_active: root.colorMode = "SinglebandGrey" if self.active else root.colorMode
Widget:
MDBoxLayout:
orientation: "vertical"

Binary file not shown.
Loading…
Cancel
Save