diff options
author | emkael <emkael@tlen.pl> | 2017-08-23 18:02:24 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-08-23 18:02:24 +0200 |
commit | 4f38d03e4d6f1a53846bc1ec8d024808ae71a01b (patch) | |
tree | 056334990768c8c67d6b11ba7a331d6bbe4fe167 /Aktywator/MainForm.cs | |
parent | c30fbc0864c52a320be0db69cef580318374dbbe (diff) | |
parent | 5ac5e9d211eda64cf35a2d727e3c9cfc1493c99a (diff) |
Merge branch 'names-list' into 1.1-beta
Diffstat (limited to 'Aktywator/MainForm.cs')
-rw-r--r-- | Aktywator/MainForm.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Aktywator/MainForm.cs b/Aktywator/MainForm.cs index 978b4bc..712a104 100644 --- a/Aktywator/MainForm.cs +++ b/Aktywator/MainForm.cs @@ -529,5 +529,14 @@ namespace Aktywator namesTimer.Interval = Convert.ToInt32(numNamesRefreshInterval.Value) * 1000; } + private void namesGridView_CellMouseEnter(object sender, DataGridViewCellEventArgs e) + { + if (e.RowIndex > -1 && e.ColumnIndex > 0) + { + DataGridViewCell cell = namesGridView.Rows[e.RowIndex].Cells[e.ColumnIndex]; + cell.ToolTipText = tournament.shortenNameToBWS(cell.Value.ToString()); + } + } + } } |