diff options
author | Linnea Gräf <roman.graef@gmail.com> | 2023-11-25 14:13:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-26 00:13:33 +1100 |
commit | f61507f7bd948d3fde697a3c8e0561f88c452a5a (patch) | |
tree | 214ba23edd9a9af1ac72492b387e55a5c696c714 /src/main/resources | |
parent | c202b3d7a7d5fdcaac6ed466d16b04928a5d6bdf (diff) | |
download | NotEnoughUpdates-f61507f7bd948d3fde697a3c8e0561f88c452a5a.tar.gz NotEnoughUpdates-f61507f7bd948d3fde697a3c8e0561f88c452a5a.tar.bz2 NotEnoughUpdates-f61507f7bd948d3fde697a3c8e0561f88c452a5a.zip |
Fix doubletyping in custom todos on bad operating systems (#937)
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/assets/notenoughupdates/gui/customtodos/edit.xml | 6 | ||||
-rw-r--r-- | src/main/resources/assets/notenoughupdates/gui/customtodos/overview.xml | 1 |
2 files changed, 5 insertions, 2 deletions
diff --git a/src/main/resources/assets/notenoughupdates/gui/customtodos/edit.xml b/src/main/resources/assets/notenoughupdates/gui/customtodos/edit.xml index 9ccf71c2..83457a60 100644 --- a/src/main/resources/assets/notenoughupdates/gui/customtodos/edit.xml +++ b/src/main/resources/assets/notenoughupdates/gui/customtodos/edit.xml @@ -18,10 +18,12 @@ ~ along with NotEnoughUpdates. If not, see <https://www.gnu.org/licenses/>. --> -<Root xmlns="http://notenoughupdates.org/moulconfig"> +<Root xmlns="http://notenoughupdates.org/moulconfig" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://notenoughupdates.org/moulconfig https://raw.githubusercontent.com/NotEnoughUpdates/MoulConfig/master/MoulConfig.xsd"> <Gui> <Column> - + <Meta afterClose="@afterClose"/> <Row> <Button onClick="@close"> <Text text="←"/> diff --git a/src/main/resources/assets/notenoughupdates/gui/customtodos/overview.xml b/src/main/resources/assets/notenoughupdates/gui/customtodos/overview.xml index b1cb1521..1aa09f2a 100644 --- a/src/main/resources/assets/notenoughupdates/gui/customtodos/overview.xml +++ b/src/main/resources/assets/notenoughupdates/gui/customtodos/overview.xml @@ -21,6 +21,7 @@ <Root xmlns="http://notenoughupdates.org/moulconfig"> <Gui> <Column> + <Meta afterClose="@afterClose"/> <Center> <Scale scale="2"> <Text text="Custom TODOs"/> |