fix: update tooltips for various settings in the right side panel

This commit is contained in:
Rizumu Ayaka
2026-01-24 14:44:13 +08:00
parent 73f9764fb4
commit cee4df890b
4 changed files with 21 additions and 14 deletions

View File

@@ -103,17 +103,17 @@ function openFullSettings() {
<FieldSwitch
v-model="showAdvancedParameters"
:label="t('rightSidePanel.globalSettings.showAdvanced')"
:tooltip="t('rightSidePanel.globalSettings.showAdvancedTooltip')"
:tooltip="t('settings.Comfy_Node_AlwaysShowAdvancedWidgets.tooltip')"
/>
<FieldSwitch
v-model="showToolbox"
:label="t('rightSidePanel.globalSettings.showToolbox')"
:tooltip="t('rightSidePanel.globalSettings.showToolboxTooltip')"
:tooltip="t('settings.Comfy_Canvas_SelectionToolbox.tooltip')"
/>
<FieldSwitch
v-model="nodes2Enabled"
:label="t('rightSidePanel.globalSettings.nodes2')"
:tooltip="t('rightSidePanel.globalSettings.nodes2Tooltip')"
:tooltip="t('settings.Comfy_VueNodes_Enabled.tooltip')"
/>
</div>
</PropertiesAccordionItem>
@@ -154,7 +154,7 @@ function openFullSettings() {
<FieldSwitch
v-model="snapToGrid"
:label="t('rightSidePanel.globalSettings.snapNodesToGrid')"
:tooltip="t('rightSidePanel.globalSettings.snapNodesToGridTooltip')"
:tooltip="t('settings.pysssss_SnapToGrid.tooltip')"
/>
</div>
</PropertiesAccordionItem>
@@ -186,9 +186,7 @@ function openFullSettings() {
<FieldSwitch
v-model="showConnectedLinks"
:label="t('rightSidePanel.globalSettings.showConnectedLinks')"
:tooltip="
t('rightSidePanel.globalSettings.showConnectedLinksTooltip')
"
:tooltip="t('settings.Comfy_LinkRenderMode.tooltip')"
/>
</div>
</PropertiesAccordionItem>

View File

@@ -2673,15 +2673,11 @@
"showAdvancedTooltip": "This is an important setting that when set to TRUE, reveals all advanced parameters for nodes",
"showInfoBadges": "Show info badges",
"showToolbox": "Show toolbox on selection",
"showToolboxTooltip": "Display a floating toolbar when nodes are selected, providing quick access to common actions",
"nodes2": "Nodes 2.0",
"nodes2Tooltip": "Modern: DOM-based rendering with enhanced interactivity, native browser features, and updated visual design. Classic: Traditional canvas rendering",
"gridSpacing": "Grid spacing",
"snapNodesToGrid": "Snap nodes to grid",
"snapNodesToGridTooltip": "When enabled, nodes will automatically align to the grid when moved or resized",
"linkShape": "Link shape",
"showConnectedLinks": "Show connected links",
"showConnectedLinksTooltip": "Toggle visibility of connection links between nodes on the canvas",
"viewAllSettings": "View all settings"
},
"groupSettings": "Group Settings",

View File

@@ -52,7 +52,8 @@
}
},
"Comfy_Canvas_SelectionToolbox": {
"name": "Show selection toolbox"
"name": "Show selection toolbox",
"tooltip": "Display a floating toolbar when nodes are selected, providing quick access to common actions."
},
"Comfy_ConfirmClear": {
"name": "Require confirmation when clearing workflow"
@@ -142,6 +143,7 @@
},
"Comfy_LinkRenderMode": {
"name": "Link Render Mode",
"tooltip": "Controls the appearance and visibility of connection links between nodes on the canvas.",
"options": {
"Straight": "Straight",
"Linear": "Linear",
@@ -249,6 +251,10 @@
"name": "Snap highlights node",
"tooltip": "When dragging a link over a node with viable input slot, highlight the node"
},
"Comfy_Node_AlwaysShowAdvancedWidgets": {
"name": "Always show advanced widgets on all nodes",
"tooltip": "When enabled, advanced widgets are always visible on all nodes without needing to expand them individually."
},
"Comfy_NodeBadge_NodeIdBadgeMode": {
"name": "Node ID badge mode",
"options": {
@@ -470,6 +476,7 @@
"tooltip": "The bezier control point offset from the reroute centre point"
},
"pysssss_SnapToGrid": {
"name": "Always snap to grid"
"name": "Always snap to grid",
"tooltip": "When enabled, nodes will automatically align to the grid when moved or resized."
}
}
}

View File

@@ -642,6 +642,8 @@ export const CORE_SETTINGS: SettingParams[] = [
id: 'Comfy.LinkRenderMode',
category: ['LiteGraph', 'Graph', 'LinkRenderMode'],
name: 'Link Render Mode',
tooltip:
'Controls the appearance and visibility of connection links between nodes on the canvas.',
defaultValue: 2,
type: 'combo',
options: [
@@ -793,6 +795,8 @@ export const CORE_SETTINGS: SettingParams[] = [
id: 'pysssss.SnapToGrid',
category: ['LiteGraph', 'Canvas', 'AlwaysSnapToGrid'],
name: 'Always snap to grid',
tooltip:
'When enabled, nodes will automatically align to the grid when moved or resized.',
type: 'boolean',
defaultValue: false,
versionAdded: '1.3.13'
@@ -960,6 +964,8 @@ export const CORE_SETTINGS: SettingParams[] = [
id: 'Comfy.Canvas.SelectionToolbox',
category: ['LiteGraph', 'Canvas', 'SelectionToolbox'],
name: 'Show selection toolbox',
tooltip:
'Display a floating toolbar when nodes are selected, providing quick access to common actions.',
type: 'boolean',
defaultValue: true,
versionAdded: '1.10.5'