Skip to content
Snippets Groups Projects
Commit 4bd3abf9 authored by Simpel's avatar Simpel
Browse files

fix: add some more height for the mxf file label


Signed-off-by: default avatarConrad Zelck <git@simpel.cc>
parent aea9f05b
No related branches found
No related tags found
No related merge requests found
......@@ -674,18 +674,19 @@ EndFunc
Func _ReWrap()
$g_hTimerStart = TimerInit()
GUIDelete($g_hGUI)
$g_hGUI = GUICreate("MXF-Track-Swap Muxing", 600, 240)
GUICtrlCreateLabel("MXF-File: " & _FileName($g_sMXFFile), 10, 10, 580, 30)
$g_hGUI = GUICreate("MXF-Track-Swap Muxing", 600, 270)
GUICtrlCreateLabel("MXF-File: " & _FileName($g_sMXFFile), 10, 10, 580, 60)
GUICtrlSetFont(-1, 14, 400, 0, "Courier New")
Global $g_hLabelInsert = GUICtrlCreateLabel("Insert Audio:", 10, 50, 580, 30)
Global $g_hLabelInsert = GUICtrlCreateLabel("Insert Audio:", 10, 80, 580, 30)
GUICtrlSetFont(-1, 12, 400, 0, "Courier New")
Global $Progress1 = GUICtrlCreateProgress(10, 80, 580, 20)
GUICtrlCreateLabel("Rewrapping:", 10, 120, 580, 30)
Global $Progress1 = GUICtrlCreateProgress(10, 110, 580, 20)
GUICtrlCreateLabel("Rewrapping:", 10, 150, 580, 30)
GUICtrlSetFont(-1, 12, 400, 0, "Courier New")
Global $Progress2 = GUICtrlCreateProgress(10, 150, 580, 20)
Global $Edit = GUICtrlCreateLabel("", 10, 200, 260, 60)
Global $Progress2 = GUICtrlCreateProgress(10, 180, 580, 20)
Global $Edit = GUICtrlCreateLabel("", 10, 230, 260, 60)
GUICtrlSetFont(-1, 14, 400, 0, "Courier New")
Global $g_hLabelRunningTime = GUICtrlCreateLabel("", 440, 200, 150, 30, $SS_CENTER)
Global $g_hLabelRunningTime = GUICtrlCreateLabel("", 440, 230, 150, 30, $SS_CENTER)
GUICtrlSetFont(-1, 14, 400, 0, "Courier New")
GUISetState(@SW_SHOW)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment