[longomatch/redesign3] Add 4:3 and 16:9 options for the capture
- From: Andoni Morales Alastruey <amorales src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [longomatch/redesign3] Add 4:3 and 16:9 options for the capture
- Date: Sun, 21 Aug 2011 20:55:18 +0000 (UTC)
commit 978769ae0433a54a71262660c136d07561b08533
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date: Sun Aug 21 12:33:54 2011 +0200
Add 4:3 and 16:9 options for the capture
LongoMatch/Gui/Component/ProjectDetailsWidget.cs | 12 ++++++++----
1 files changed, 8 insertions(+), 4 deletions(-)
---
diff --git a/LongoMatch/Gui/Component/ProjectDetailsWidget.cs b/LongoMatch/Gui/Component/ProjectDetailsWidget.cs
index 66a071c..2535b26 100644
--- a/LongoMatch/Gui/Component/ProjectDetailsWidget.cs
+++ b/LongoMatch/Gui/Component/ProjectDetailsWidget.cs
@@ -391,10 +391,14 @@ namespace LongoMatch.Gui.Component
private void FillFormats() {
videoStandardList = new ListStore(typeof(string), typeof (VideoStandard));
videoStandardList.AppendValues(VideoStandards.Original.Name, VideoStandards.Original);
- videoStandardList.AppendValues(VideoStandards.P240.Name, VideoStandards.P240);
- videoStandardList.AppendValues(VideoStandards.P480.Name, VideoStandards.P480);
- videoStandardList.AppendValues(VideoStandards.P720.Name, VideoStandards.P720);
- videoStandardList.AppendValues(VideoStandards.P1080.Name, VideoStandards.P1080);
+ videoStandardList.AppendValues(VideoStandards.P240_4_3.Name, VideoStandards.P240_4_3);
+ videoStandardList.AppendValues(VideoStandards.P240_16_9.Name, VideoStandards.P240_16_9);
+ videoStandardList.AppendValues(VideoStandards.P480_4_3.Name, VideoStandards.P480_4_3);
+ videoStandardList.AppendValues(VideoStandards.P480_16_9.Name, VideoStandards.P480_16_9);
+ videoStandardList.AppendValues(VideoStandards.P720_4_3.Name, VideoStandards.P720_4_3);
+ videoStandardList.AppendValues(VideoStandards.P720_16_9.Name, VideoStandards.P720_16_9);
+ videoStandardList.AppendValues(VideoStandards.P1080_4_3.Name, VideoStandards.P1080_4_3);
+ videoStandardList.AppendValues(VideoStandards.P1080_16_9.Name, VideoStandards.P1080_16_9);
sizecombobox.Model = videoStandardList;
sizecombobox.Active = 0;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]