Skip to content

Commit

Permalink
fix win10 style
Browse files Browse the repository at this point in the history
  • Loading branch information
TNTwise committed Dec 20, 2024
1 parent be64750 commit af12c81
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions REAL-Video-Enhancer.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import sys
import os
from threading import Thread

# patch for macos
if sys.platform == "darwin":
Expand Down Expand Up @@ -284,7 +283,7 @@ def updateVideoGUIDetails(self):
isInterpolate
)
self.interpolateContainer_2.setVisible(
isInterpolate
isInterpolate
)
# set interpolation container visible if interpolate model is not none
self.upscaleContainer.setVisible(
Expand Down Expand Up @@ -319,7 +318,7 @@ def startRender(self):
else self.videoFrameCount,
)
self.disableProcessPage()

self.processTab.run(
inputFile=self.inputFileText.text(),
outputPath=self.outputFileText.text(),
Expand Down Expand Up @@ -514,7 +513,7 @@ def closeEvent(self, event):

def main():
app = QApplication(sys.argv)

app.setStyle("Fusion")
# setting the pallette

app.setPalette(Palette())
Expand Down

0 comments on commit af12c81

Please sign in to comment.