@@ -2578,7 +2578,7 @@ class MacAttack(QMainWindow):
25782578 )
25792579 self .output_text .setPlainText ("Output LOG:\n Results will appear here.\n " )
25802580 self .output_text .setReadOnly (True )
2581- monospace_font = QFont ("Cascadia Mono " , 10 )
2581+ monospace_font = QFont ("Lucida Console " , 10 )
25822582 self .output_text .setFont (monospace_font )
25832583 layout .addWidget (self .output_text )
25842584
@@ -2860,9 +2860,6 @@ class MacAttack(QMainWindow):
28602860 self .iptv_link_entry .setText (
28612861 config .get ("Settings" , "iptv_link" , fallback = "" )
28622862 )
2863- self .concurrent_tests .setValue (
2864- config .getint ("Settings" , "concurrent_tests" , fallback = 10 )
2865- )
28662863 self .hostname_input .setText (config .get ("Settings" , "hostname" , fallback = "" ))
28672864 self .mac_input .setText (config .get ("Settings" , "mac" , fallback = "" ))
28682865 # Load checkbox states
@@ -2884,6 +2881,9 @@ class MacAttack(QMainWindow):
28842881 self .ludicrous_speed_checkbox .setChecked (
28852882 config .get ("Settings" , "ludicrous_speed" , fallback = "False" ) == "True"
28862883 )
2884+ self .concurrent_tests .setValue (
2885+ config .getint ("Settings" , "concurrent_tests" , fallback = 10 )
2886+ )
28872887 self .deviceid_output_checkbox .setChecked (
28882888 config .get ("Settings" , "deviceid_output" , fallback = "False" ) == "True"
28892889 )
@@ -3864,7 +3864,7 @@ class MacAttack(QMainWindow):
38643864 )
38653865
38663866 if include_genres : # OK, I made this way too stupid(and it hurt my brain), but it works, and I like it!
3867- title_max_length = 20 # Cut off end of titles afther this many chars
3867+ title_max_length = 16 # Cut off end of titles afther this many chars
38683868 title_columns = 4
38693869 titles_str = None
38703870 titles_grid = None
@@ -3920,7 +3920,7 @@ class MacAttack(QMainWindow):
39203920 logging .debug (f"Original Genres: { orig_genres } " )
39213921 logging .debug (f"Formatted Titles Grid:\n { titles_grid } " )
39223922 if include_vod :
3923- title_max_length = 20 # Cut off end of titles afther this many chars
3923+ title_max_length = 16 # Cut off end of titles afther this many chars
39243924 title_columns = 4
39253925 vod_str = None
39263926 vod_grid = None
0 commit comments