Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tooltip for auto-installed checkboxes #3842

Merged
merged 1 commit into from
May 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion GUI/Model/ModList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,8 @@ private DataGridViewRow MakeRow(GUIMod mod, List<ModChange> changes, string inst
var autoInstalled = mod.IsInstalled && !mod.IsAutodetected
? (DataGridViewCell) new DataGridViewCheckBoxCell()
{
Value = mod.IsAutoInstalled
Value = mod.IsAutoInstalled,
ToolTipText = Properties.Resources.MainModListAutoInstalledToolTip,
}
: new DataGridViewTextBoxCell()
{
Expand Down
3 changes: 3 additions & 0 deletions GUI/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions GUI/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ If you suspect a bug in the client: https://github.com/KSP-CKAN/CKAN/issues/new/
<data name="MainModListAll" xml:space="preserve"><value>All ({0})</value></data>
<data name="MainModListUpdatingTray" xml:space="preserve"><value>Updating tray...</value></data>
<data name="MainModListAutoDetected" xml:space="preserve"><value>AD</value></data>
<data name="MainModListAutoInstalledToolTip" xml:space="preserve"><value>If checked, auto-uninstall this mod if everything that depends on it is removed</value></data>
<data name="MainModListUnknownFilter" xml:space="preserve"><value>Unknown filter type {0} in IsModInFilter</value></data>
<data name="MainRecommendationsTitle" xml:space="preserve"><value>Choose recommended, suggested, or supporting mods</value></data>
<data name="MainRecommendationsNoneFound" xml:space="preserve"><value>No recommended, suggested, or supporting mods found.</value></data>
Expand Down