Skip to content

Commit 875734d

Browse files
authored
Merge pull request darktable-org#422 from wpferguson/fix_script_data_show
Fix script data show
2 parents 7ecd5ca + 14d5a79 commit 875734d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+47
-1
lines changed

contrib/AutoGrouper.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ local script_data = {}
5050
script_data.destroy = nil -- function to destory the script
5151
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
5252
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
53+
script_data.show = nil -- only required for libs since the destroy_method only hides them
5354

5455
local gettext = dt.gettext
5556
-- Tell gettext where to find the .mo file translating messages for a particular domain
@@ -215,4 +216,4 @@ script_data.destroy_method = "hide"
215216
script_data.restart = restart
216217
script_data.show = restart
217218

218-
return script_data
219+
return script_data

contrib/CollectHelper.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ local script_data = {}
6363
script_data.destroy = nil -- function to destory the script
6464
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
6565
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
66+
script_data.show = nil -- only required for libs since the destroy_method only hides them
6667

6768
local function _(msgid)
6869
return gettext.dgettext("CollectHelper", msgid)

contrib/HDRMerge.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ local script_data = {}
5858
script_data.destroy = nil -- function to destory the script
5959
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
6060
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
61+
script_data.show = nil -- only required for libs since the destroy_method only hides them
6162

6263

6364
local mod = 'module_HDRMerge'

contrib/LabelsToTags.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ local script_data = {}
5959
script_data.destroy = nil -- function to destory the script
6060
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
6161
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
62+
script_data.show = nil -- only required for libs since the destroy_method only hides them
6263

6364
-- Lua 5.3 no longer has "unpack" but "table.unpack"
6465
unpack = unpack or table.unpack

contrib/OpenInExplorer.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ local script_data = {}
6363
script_data.destroy = nil -- function to destory the script
6464
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
6565
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
66+
script_data.show = nil -- only required for libs since the destroy_method only hides them
6667

6768
-- Tell gettext where to find the .mo file translating messages for a particular domain
6869
gettext.bindtextdomain("OpenInExplorer",dt.configuration.config_dir.."/lua/locale/")

contrib/RL_out_sharp.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ local script_data = {}
7272
script_data.destroy = nil -- function to destory the script
7373
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
7474
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
75+
script_data.show = nil -- only required for libs since the destroy_method only hides them
7576

7677
-- OS compatibility
7778
local PS = dt.configuration.running_os == "windows" and "\\" or "/"

contrib/autostyle.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ local script_data = {}
4949
script_data.destroy = nil -- function to destory the script
5050
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
5151
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
52+
script_data.show = nil -- only required for libs since the destroy_method only hides them
5253

5354
-- run command and retrieve stdout
5455
local function get_stdout(cmd)

contrib/change_group_leader.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ local script_data = {}
4949
script_data.destroy = nil -- function to destory the script
5050
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
5151
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
52+
script_data.show = nil -- only required for libs since the destroy_method only hides them
5253

5354
-- Tell gettext where to find the .mo file translating messages for a particular domain
5455
gettext.bindtextdomain(MODULE, dt.configuration.config_dir.."/lua/locale/")

contrib/clear_GPS.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ local script_data = {}
4646
script_data.destroy = nil -- function to destory the script
4747
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet
4848
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
49+
script_data.show = nil -- only required for libs since the destroy_method only hides them
4950

5051
local gettext = dt.gettext
5152

contrib/copy_attach_detach_tags.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ local script_data = {}
5151
script_data.destroy = nil -- function to destory the script
5252
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
5353
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
54+
script_data.show = nil -- only required for libs since the destroy_method only hides them
5455

5556
-- Tell gettext where to find the .mo file translating messages for a particular domain
5657
gettext.bindtextdomain("copy_attach_detach_tags",dt.configuration.config_dir.."/lua/locale/")

contrib/cr2hdr.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ local script_data = {}
4444
script_data.destroy = nil -- function to destory the script
4545
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
4646
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
47+
script_data.show = nil -- only required for libs since the destroy_method only hides them
4748

4849
local queue = {}
4950
local processed_files = {}

contrib/enfuseAdvanced.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ local script_data = {}
7474
script_data.destroy = nil -- function to destory the script
7575
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
7676
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
77+
script_data.show = nil -- only required for libs since the destroy_method only hides them
7778

7879
-- Tell gettext where to find the .mo file translating messages for a particular domain
7980
local gettext = dt.gettext

contrib/exportLUT.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ local script_data = {}
4040
script_data.destroy = nil -- function to destory the script
4141
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
4242
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
43+
script_data.show = nil -- only required for libs since the destroy_method only hides them
4344

4445
local gettext = dt.gettext
4546

contrib/ext_editor.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ local script_data = {}
8282
script_data.destroy = nil -- function to destory the script
8383
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
8484
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
85+
script_data.show = nil -- only required for libs since the destroy_method only hides them
8586

8687
-- OS compatibility
8788
local PS = dt.configuration.running_os == "windows" and "\\" or "/"

contrib/face_recognition.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ local script_data = {}
6161
script_data.destroy = nil -- function to destory the script
6262
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
6363
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
64+
script_data.show = nil -- only required for libs since the destroy_method only hides them
6465

6566
-- namespace
6667

contrib/fujifilm_dynamic_range.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ local script_data = {}
7070
script_data.destroy = nil -- function to destory the script
7171
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
7272
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
73+
script_data.show = nil -- only required for libs since the destroy_method only hides them
7374

7475
local function detect_dynamic_range(event, image)
7576
if image.exif_maker ~= "FUJIFILM" then

contrib/fujifilm_ratings.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ local script_data = {}
3737
script_data.destroy = nil -- function to destory the script
3838
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
3939
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
40+
script_data.show = nil -- only required for libs since the destroy_method only hides them
4041

4142
gettext.bindtextdomain("fujifilm_ratings", dt.configuration.config_dir.."/lua/locale/")
4243

contrib/geoJSON_export.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ local script_data = {}
4646
script_data.destroy = nil -- function to destory the script
4747
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
4848
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
49+
script_data.show = nil -- only required for libs since the destroy_method only hides them
4950

5051
-- Tell gettext where to find the .mo file translating messages for a particular domain
5152
gettext.bindtextdomain("geoJSON_export",dt.configuration.config_dir.."/lua/locale/")

contrib/geoToolbox.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ local script_data = {}
3939
script_data.destroy = nil -- function to destory the script
4040
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
4141
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
42+
script_data.show = nil -- only required for libs since the destroy_method only hides them
4243

4344
-- Tell gettext where to find the .mo file translating messages for a particular domain
4445
gettext.bindtextdomain("geoToolbox",dt.configuration.config_dir.."/lua/locale/")

contrib/gimp.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ local script_data = {}
8181
script_data.destroy = nil -- function to destory the script
8282
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
8383
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
84+
script_data.show = nil -- only required for libs since the destroy_method only hides them
8485

8586
-- Tell gettext where to find the .mo file translating messages for a particular domain
8687
gettext.bindtextdomain("gimp",dt.configuration.config_dir.."/lua/locale/")

contrib/gpx_export.lua

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ local script_data = {}
3636
script_data.destroy = nil -- function to destory the script
3737
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
3838
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
39+
script_data.show = nil -- only required for libs since the destroy_method only hides them
3940

4041
-- Tell gettext where to find the .mo file translating messages for a particular domain
4142
gettext.bindtextdomain("gpx_export",dt.configuration.config_dir.."/lua/locale/")
@@ -203,5 +204,6 @@ end
203204
script_data.destroy = destroy
204205
script_data.restart = restart
205206
script_data.destroy_method = "hide"
207+
script_data.show = restart
206208

207209
return script_data

contrib/hugin.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ local script_data = {}
6363
script_data.destroy = nil -- function to destory the script
6464
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
6565
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
66+
script_data.show = nil -- only required for libs since the destroy_method only hides them
6667

6768
-- Tell gettext where to find the .mo file translating messages for a particular domain
6869
gettext.bindtextdomain("hugin",dt.configuration.config_dir.."/lua/locale/")

contrib/image_stack.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ local script_data = {}
8080
script_data.destroy = nil -- function to destory the script
8181
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
8282
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
83+
script_data.show = nil -- only required for libs since the destroy_method only hides them
8384

8485
-- Tell gettext where to find the .mo file translating messages for a particular domain
8586
gettext.bindtextdomain("image_stack",dt.configuration.config_dir.."/lua/locale/")

contrib/image_time.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ local script_data = {}
122122
script_data.destroy = nil -- function to destory the script
123123
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
124124
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
125+
script_data.show = nil -- only required for libs since the destroy_method only hides them
125126

126127

127128
-- Tell gettext where to find the .mo file translating messages for a particular domain

contrib/kml_export.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ local script_data = {}
5252
script_data.destroy = nil -- function to destory the script
5353
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
5454
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
55+
script_data.show = nil -- only required for libs since the destroy_method only hides them
5556

5657
-- Tell gettext where to find the .mo file translating messages for a particular domain
5758
gettext.bindtextdomain("kml_export",dt.configuration.config_dir.."/lua/locale/")

contrib/pdf_slideshow.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ local script_data = {}
6565
script_data.destroy = nil -- function to destory the script
6666
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
6767
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
68+
script_data.show = nil -- only required for libs since the destroy_method only hides them
6869

6970
dt.preferences.register
7071
("pdf_slideshow","open with","string",

contrib/photils.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ local script_data = {}
5151
script_data.destroy = nil -- function to destory the script
5252
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
5353
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
54+
script_data.show = nil -- only required for libs since the destroy_method only hides them
5455

5556

5657
local PS = dt.configuration.running_os == "windows" and "\\" or "/"

contrib/rate_group.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ local script_data = {}
5151
script_data.destroy = nil -- function to destory the script
5252
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
5353
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
54+
script_data.show = nil -- only required for libs since the destroy_method only hides them
5455

5556
local function apply_rating(rating)
5657
local images = dt.gui.action_images

contrib/rename-tags.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ local script_data = {}
4343
script_data.destroy = nil -- function to destory the script
4444
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
4545
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
46+
script_data.show = nil -- only required for libs since the destroy_method only hides them
4647

4748
local rt = {}
4849
rt.module_installed = false

contrib/rename_images.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ local script_data = {}
7575
script_data.destroy = nil -- function to destory the script
7676
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
7777
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
78+
script_data.show = nil -- only required for libs since the destroy_method only hides them
7879

7980

8081
-- - - - - - - - - - - - - - - - - - - - - - - -

contrib/select_untagged.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ local script_data = {}
3131
script_data.destroy = nil -- function to destory the script
3232
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
3333
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
34+
script_data.show = nil -- only required for libs since the destroy_method only hides them
3435

3536
-- Tell gettext where to find the .mo file translating messages for a particular domain
3637
gettext.bindtextdomain("select_untagged",dt.configuration.config_dir.."/lua/locale/")

contrib/slideshowMusic.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ local script_data = {}
3838
script_data.destroy = nil -- function to destory the script
3939
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
4040
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
41+
script_data.show = nil -- only required for libs since the destroy_method only hides them
4142

4243
-- Tell gettext where to find the .mo file translating messages for a particular domain
4344
gettext.bindtextdomain("slideshowMusic",dt.configuration.config_dir.."/lua/locale/")

contrib/transfer_hierarchy.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ local script_data = {}
8787
script_data.destroy = nil -- function to destory the script
8888
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
8989
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
90+
script_data.show = nil -- only required for libs since the destroy_method only hides them
9091

9192
local MKDIR_COMMAND = darktable.configuration.running_os == "windows" and "mkdir " or "mkdir -p "
9293
local PATH_SEPARATOR = darktable.configuration.running_os == "windows" and "\\\\" or "/"

contrib/video_ffmpeg.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ local script_data = {}
4848
script_data.destroy = nil -- function to destory the script
4949
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
5050
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
51+
script_data.show = nil -- only required for libs since the destroy_method only hides them
5152

5253
local MODULE_NAME = "video_ffmpeg"
5354

examples/moduleExample.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ local script_data = {}
4242
script_data.destroy = nil -- function to destory the script
4343
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet, otherwise leave as nil
4444
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
45+
script_data.show = nil -- only required for libs since the destroy_method only hides them
4546

4647
-- translation
4748

official/check_for_updates.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ local script_data = {}
4141
script_data.destroy = nil -- function to destory the script
4242
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet
4343
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
44+
script_data.show = nil -- only required for libs since the destroy_method only hides them
4445

4546
-- compare two version strings of the form "major.minor.patch"
4647
-- returns -1, 0, 1 if the first version is smaller, equal, greater than the second version,

official/copy_paste_metadata.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ local script_data = {}
3838
script_data.destroy = nil -- function to destory the script
3939
script_data.destroy_method = nil -- set to hide for libs since we can't destroy them commpletely yet
4040
script_data.restart = nil -- how to restart the (lib) script after it's been hidden - i.e. make it visible again
41+
script_data.show = nil -- only required for libs since the destroy_method only hides them
4142

4243
-- set this to "false" if you don't want to overwrite metadata fields
4344
-- (title, description, creator, publisher and rights) that are already set

0 commit comments

Comments
 (0)