mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
Changed color of video players time code label to gray from sort of cyan
git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@228 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
parent
8eab0f8f18
commit
46e43ed745
@ -9,6 +9,7 @@ namespace Nikse.SubtitleEdit.Controls
|
|||||||
{
|
{
|
||||||
public sealed class VideoPlayerContainer : Panel
|
public sealed class VideoPlayerContainer : Panel
|
||||||
{
|
{
|
||||||
|
|
||||||
class RichTextBoxViewOnly : System.Windows.Forms.RichTextBox
|
class RichTextBoxViewOnly : System.Windows.Forms.RichTextBox
|
||||||
{
|
{
|
||||||
public RichTextBoxViewOnly()
|
public RichTextBoxViewOnly()
|
||||||
@ -517,9 +518,10 @@ namespace Nikse.SubtitleEdit.Controls
|
|||||||
_pictureBoxFastForwardDown.TabStop = false;
|
_pictureBoxFastForwardDown.TabStop = false;
|
||||||
_panelcontrols.Controls.Add(_pictureBoxFastForwardDown);
|
_panelcontrols.Controls.Add(_pictureBoxFastForwardDown);
|
||||||
|
|
||||||
_labelTimeCode.Location = new Point(280, 29);
|
_labelTimeCode.Location = new Point(280, 28);
|
||||||
_labelTimeCode.ForeColor = Color.FromArgb(100, 200, 200);
|
_labelTimeCode.ForeColor = Color.Gray; // Color.FromArgb(100, 200, 200);
|
||||||
_labelTimeCode.Font = new Font(_labelTimeCode.Font.FontFamily, 7);
|
_labelTimeCode.Font = new Font(_labelTimeCode.Font.FontFamily, 7);
|
||||||
|
// _labelTimeCode.BackColor = Color.Transparent;
|
||||||
_labelTimeCode.AutoSize = true;
|
_labelTimeCode.AutoSize = true;
|
||||||
_panelcontrols.Controls.Add(_labelTimeCode);
|
_panelcontrols.Controls.Add(_labelTimeCode);
|
||||||
|
|
||||||
@ -878,7 +880,6 @@ namespace Nikse.SubtitleEdit.Controls
|
|||||||
TimeSpan span = TimeSpan.FromSeconds(pos);
|
TimeSpan span = TimeSpan.FromSeconds(pos);
|
||||||
string displayTime = string.Format("{0:00}:{1:00}:{2:00},{3:000}", span.Hours, span.Minutes, span.Seconds, span.Milliseconds);
|
string displayTime = string.Format("{0:00}:{1:00}:{2:00},{3:000}", span.Hours, span.Minutes, span.Seconds, span.Milliseconds);
|
||||||
_labelTimeCode.Text = displayTime + _totalPositionString;
|
_labelTimeCode.Text = displayTime + _totalPositionString;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user