update landscape

pull/2/head
runette 2 years ago
parent 2d96158272
commit 5d61565d1e
  1. BIN
      landscape/base_library.zip
  2. 4
      landscape/filter_adapters/assign_adapter.kv
  3. BIN
      landscape/landscape.exe
  4. 6
      landscape/layer_adapters/layer_ui_components.kv
  5. BIN
      landscape/win32/pywintypes310.dll

Binary file not shown.

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

Binary file not shown.

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

Binary file not shown.
Loading…
Cancel
Save