mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-03-28 14:56:28 +01:00
Bug 579974: Add tooltip to docker connection dropdown
Support the user to find out how to manage the docker connections. This is not always obvious. Change-Id: I0f8e49cc3618a5a99e19c8bcec9aa86fd23fae93 Signed-off-by: Moritz 'Morty' Strübe <moritz.struebe@mathema.de>
This commit is contained in:
parent
a1794246d5
commit
ed59ec722b
3 changed files with 3 additions and 0 deletions
|
@ -188,6 +188,7 @@ public class ContainerPropertyTab extends AbstractCBuildPropertyTab
|
|||
connectionSelectorLabel.setLayoutData(gd);
|
||||
|
||||
connectionSelector = new Combo(usercomp, SWT.BORDER | SWT.READ_ONLY);
|
||||
connectionSelector.setToolTipText(Messages.ContainerTab_Connection_Selector_Tooltip);
|
||||
initializeConnectionSelector();
|
||||
connectionSelector.addModifyListener(connectionModifyListener);
|
||||
// Following is a kludge so that on Linux the Combo is read-only but
|
||||
|
|
|
@ -48,6 +48,7 @@ public class Messages extends NLS {
|
|||
public static String ContainerTab_Privileged_Mode_Label;
|
||||
public static String ContainerTab_Error_Reading_Configuration;
|
||||
public static String ContainerTab_Connection_Selector_Label;
|
||||
public static String ContainerTab_Connection_Selector_Tooltip;
|
||||
public static String ContainerTab_Image_Selector_Label;
|
||||
public static String ContainerTab_Port_Column;
|
||||
public static String ContainerTab_Type_Column;
|
||||
|
|
|
@ -41,6 +41,7 @@ ContainerTab_Specify_Ports_Label=Manually specify ports and only publish selecte
|
|||
ContainerTab_Publish_All_Ports_Label=Publish all default exposed ports for image to random ports on the host
|
||||
ContainerTab_Option_Group_Name=Additional Options
|
||||
ContainerTab_Connection_Selector_Label=Connection:\u0020
|
||||
ContainerTab_Connection_Selector_Tooltip=The connections can be managed in the "Docker Explorer" window
|
||||
ContainerTab_Image_Selector_Label=Image:
|
||||
ContainerTab_Port_Column=Container Port
|
||||
ContainerTab_Type_Column=Type
|
||||
|
|
Loading…
Add table
Reference in a new issue