[Gui] PrefPacks - remove "type" parameter

In display, show the "tags" instead.
This commit is contained in:
Chris Hennes
2021-10-11 13:22:28 -05:00
parent abf031d4bf
commit d0b867bdd5
20 changed files with 95 additions and 158 deletions

View File

@@ -1,27 +0,0 @@
SET(PreferencePackTemplates_Files
Arch_Colors.cfg
Console_Colors.cfg
Draft_Colors.cfg
Editor_Colors.cfg
Editor_Font.cfg
Path_Colors.cfg
Sketcher_Colors.cfg
Start_Colors.cfg
TechDraw_Colors.cfg
Window_Colors.cfg
)
ADD_CUSTOM_TARGET(PreferencePackTemplates_data ALL
SOURCES ${PreferencePackTemplates_Files}
)
fc_copy_sources(PreferencePackTemplates_data "${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_DATADIR}/Gui/PreferencePackTemplates/Appearance"
${PreferencePackTemplates_Files})
INSTALL(
FILES
${PreferencePackTemplates_Files}
DESTINATION
${CMAKE_INSTALL_DATADIR}/Gui/PreferencePackTemplates/Appearance
)

View File

@@ -1,18 +0,0 @@
SET(PreferencePackBehaviorTemplates_Files
Main_window_layout.cfg
)
ADD_CUSTOM_TARGET(PreferencePackBehaviorTemplates_data ALL
SOURCES ${PreferencePackBehaviorTemplates_Files}
)
fc_copy_sources(PreferencePackBehaviorTemplates_data "${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_DATADIR}/Gui/PreferencePackTemplates/Behavior"
${PreferencePackBehaviorTemplates_Files})
INSTALL(
FILES
${PreferencePackBehaviorTemplates_Files}
DESTINATION
${CMAKE_INSTALL_DATADIR}/Gui/PreferencePackTemplates/Behavior
)

View File

@@ -1,2 +1,28 @@
add_subdirectory(Appearance)
add_subdirectory(Behavior)
SET(PreferencePackTemplates_Files
Arch_Colors.cfg
Console_Colors.cfg
Draft_Colors.cfg
Editor_Colors.cfg
Editor_Font.cfg
Main_window_layout.cfg
Path_Colors.cfg
Sketcher_Colors.cfg
Start_Colors.cfg
TechDraw_Colors.cfg
Window_Colors.cfg
)
ADD_CUSTOM_TARGET(PreferencePackTemplates_data ALL
SOURCES ${PreferencePackTemplates_Files}
)
fc_copy_sources(PreferencePackTemplates_data "${CMAKE_BINARY_DIR}/${CMAKE_INSTALL_DATADIR}/Gui/PreferencePackTemplates"
${PreferencePackTemplates_Files})
INSTALL(
FILES
${PreferencePackTemplates_Files}
DESTINATION
${CMAKE_INSTALL_DATADIR}/Gui/PreferencePackTemplates
)