diff --git a/app/settings-default.cfg b/app/settings-default.cfg index c9808bce..ebfc20bd 100644 --- a/app/settings-default.cfg +++ b/app/settings-default.cfg @@ -495,6 +495,7 @@ stats w = 0.375 stats h = 0.4275 # Stats window pin status stats pin = false +stats hidden = false # Spells window displaying powers, spells, and magical items. spells x = 0.625 @@ -503,6 +504,7 @@ spells w = 0.375 spells h = 0.4275 # Spells window pin status spells pin = false +spells hidden = false # Local and world map window. map x = 0.625 @@ -511,6 +513,15 @@ map w = 0.375 map h = 0.5725 # Map window pin status map pin = false +map hidden = false + +# Player inventory window when explicitly opened. +inventory x = 0.0 +inventory y = 0.4275 +inventory w = 0.6225 +inventory h = 0.5725 +inventory pin = false +inventory hidden = false # Dialog window for talking with NPCs. dialogue x = 0.095 @@ -530,14 +541,6 @@ console y = 0.0 console w = 1.0 console h = 0.5 -# Player inventory window when explicitly opened. -inventory x = 0.0 -inventory y = 0.4275 -inventory w = 0.6225 -inventory h = 0.5725 -# Inventory window pin status -inventory pin = false - # Player inventory window when searching a container. inventory container x = 0.0 inventory container y = 0.4275 diff --git a/buildscripts/CMakeLists.txt b/buildscripts/CMakeLists.txt index 70d9ccae..7c88cccf 100644 --- a/buildscripts/CMakeLists.txt +++ b/buildscripts/CMakeLists.txt @@ -470,7 +470,7 @@ set(OPENMW_COMMON -DMyGUI_LIBRARY=${prefix}/lib/libMyGUIEngineStatic.a ) set(OPENMW_PATCH - patch -d -p1 -t -N < ${CMAKE_SOURCE_DIR}/patches/openmw-revert-ui-dimensions.patch && + # patch -d -p1 -t -N < ${CMAKE_SOURCE_DIR}/patches/openmw-revert-ui-dimensions.patch && patch -d -p1 -t -N < ${CMAKE_SOURCE_DIR}/patches/openmw-add-simpler-collisions-option.patch && patch -d -p1 -t -N < ${CMAKE_SOURCE_DIR}/patches/openmw-shadows-red-sky.patch && patch -d -p1 -t -N < ${CMAKE_SOURCE_DIR}/patches/openmw-mouse-visibility.patch &&