Skip to content

Commit 68fd550

Browse files
committed
Adding new Profile Editor. New context menu options to Edit, Duplicate, and Delete custom profiles. Updated translations (new strings). Modified "Choose Profile" to apply a new profile, even if it's already applied (i.e. might have been edited now). Added new methods for inserting / updating / removing rows from the Profile model / view. Fixed small bug on the Export screen, to restore start/end frame correctly.
1 parent 2715855 commit 68fd550

File tree

11 files changed

+890
-128
lines changed

11 files changed

+890
-128
lines changed

src/classes/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ def profile(self):
285285
"num": d.get("fps", {}).get("num", 1),
286286
},
287287
"height": d.get("height", 1),
288-
"interlaced_frame": d.get("interlaced_frame", False),
288+
"progressive": not d.get("interlaced_frame", False),
289289
"pixel_format": d.get("pixel_format", None),
290290
"pixel_ratio":
291291
{

0 commit comments

Comments
 (0)