As just plain text message and code comment.
From d6eefff1a06f6f40d3877d497676cd16e38429f0 Mon Sep 17 00:00:00 2001
From: Andrew Randrianasulu <randrianas...@gmail.com>
Date: Tue, 9 Jan 2024 15:30:39 +0300
Subject: [PATCH 6/6] Document that W/H ratio fields mean in this window

---
 cinelerra-5.1/cinelerra/setformat.C | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/cinelerra-5.1/cinelerra/setformat.C b/cinelerra-5.1/cinelerra/setformat.C
index ec6a5c82..4a86f4b0 100644
--- a/cinelerra-5.1/cinelerra/setformat.C
+++ b/cinelerra-5.1/cinelerra/setformat.C
@@ -289,6 +289,13 @@ SetFormatWindow::~SetFormatWindow()
 	delete presets;
 }
 
+/* W Ratio, H Ratio
+Sets the ratio of the new canvas size (W, H) to the old (previous) canvas size (W, H). 
+The new canvas size is recalculated based upon a certain factor in the W Ratio, 
+H Ratio fields. A practical use-case: The current resolution is 640x480, and for some reason 
+you want it to be 1.33 times wider. You don't have to calculate what 640x1.33 is; 
+you type 1.33 into the "W" input instead, and Cinelerra calculates it for you. */
+
 void SetFormatWindow::create_objects()
 {
 	lock_window("SetFormatWindow::create_objects");
@@ -454,6 +461,10 @@ void SetFormatWindow::create_objects()
 		(ArrayList<BC_ListBoxItem*>*)&mwindow->interlace_project_modes,
 		mwindow->theme->setformat_x4 + textbox->get_w(), y));
 	y += mwindow->theme->setformat_margin;
+	
+	add_subwindow(new BC_Title(mwindow->theme->setformat_x3,
+               y+10,
+               _("Note: W/H ratio fields means multipliers \nrelative to prev. canvas size \n")));
 
 	BC_OKTextButton *ok;
 	BC_CancelTextButton *cancel;
-- 
2.43.0

-- 
Cin mailing list
Cin@lists.cinelerra-gg.org
https://lists.cinelerra-gg.org/mailman/listinfo/cin

Reply via email to