Skip to content

Commit 79a30c8

Browse files
committed
UI changes to accommodate changes to metadata and keyword handling
1 parent a2fa8c6 commit 79a30c8

1 file changed

Lines changed: 28 additions & 32 deletions

File tree

piwigoPublish.lrplugin/PublishDialogSections.lua

Lines changed: 28 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -288,42 +288,38 @@ local function prefsDialog (f, propertyTable)
288288

289289
f:spacer { height = 2 },
290290
f:separator { fill_horizontal = 1},
291+
f:group{
292+
title = "Keyword Options and Settings",
293+
font = "<system/bold>",
294+
295+
f:spacer { height = 2 },
296+
f:row {
297+
f:static_text {
298+
title = "",
299+
alignment = 'left',
300+
width_in_chars = 7,
301+
},
302+
f:checkbox {
303+
title = "Include Full Keyword Hierarchy",
304+
tooltip = "If checked, all keywords in a keyword hierarchy will be sent to Piwigo",
305+
value = bind 'KwFullHierarchy',
306+
}
291307

292-
f:row {
293-
f:static_text {
294-
title = "Settings for Transferring Metadata to Piwigo",
295-
font = "<system/bold>",
296-
alignment = 'left',
297-
fill_horizontal = 1,
298308
},
299-
},
300-
f:spacer { height = 2 },
301-
f:row {
302-
f:static_text {
303-
title = "",
304-
alignment = 'left',
305-
width_in_chars = 7,
306-
},
307-
f:checkbox {
308-
title = "Include Full Keyword Hierarchy",
309-
tooltip = "If checked, all keywords in a keyword hierarchy will be sent to Piwigo",
310-
value = bind 'KwFullHierarchy',
311-
}
309+
f:spacer { height = 2 },
310+
f:row {
311+
f:static_text {
312+
title = "",
313+
alignment = 'left',
314+
width_in_chars = 7,
315+
},
316+
f:checkbox {
317+
title = "Include Keyword Synonyms",
318+
tooltip = "If checked, keyword synonyms will be sent to Piwigo",
319+
value = bind 'KwSynonyms',
320+
}
312321

313-
},
314-
f:spacer { height = 2 },
315-
f:row {
316-
f:static_text {
317-
title = "",
318-
alignment = 'left',
319-
width_in_chars = 7,
320322
},
321-
f:checkbox {
322-
title = "Include Keyword Synonyms",
323-
tooltip = "If checked, keyword synonyms will be sent to Piwigo",
324-
value = bind 'KwSynonyms',
325-
}
326-
327323
},
328324
}
329325
end

0 commit comments

Comments
 (0)