summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels
diff options
context:
space:
mode:
authorsr55 <[email protected]>2015-01-23 18:00:55 +0000
committersr55 <[email protected]>2015-01-23 18:00:55 +0000
commit2ed21d4f40e109da31b9a8e3da4ca7633dcf378c (patch)
tree31f0e5ae423e11304266833680293dae7c8f7e7c /win/CS/HandBrakeWPF/ViewModels
parent83f65503203d8c1db0a12d3377e8c20f8eb120e7 (diff)
WinGui: Improve the extra args tooltip.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6806 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs
index 3378bbfa3..423dbd42b 100644
--- a/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs
@@ -793,7 +793,7 @@ namespace HandBrakeWPF.ViewModels
{
get
{
- return string.Format(Resources.Video_EncoderExtraArgs, this.GetActualx264Query()); // "You can provide additional arguments using the standard x264 format";
+ return this.SelectedVideoEncoder != VideoEncoder.X264 ? Resources.Video_EncoderExtraArgsTooltip : string.Format(Resources.Video_EncoderExtraArgs, this.GetActualx264Query());
}
}