@@ -74,8 +74,9 @@ def Settings():
7474 global theme_status ,language_status ,resizability_x_status ,resizability_y_status ,custom_resolution_status ,window ,resizability_x_window_name ,resizability_y_window_name
7575 window = Tk ()
7676 window .title (settings_title )
77- window .geometry ("450x460 " )
77+ window .geometry ("450x350 " )
7878 window .configure (bg = window_bg )
79+ window .iconbitmap ("Icon/settings_icon.ico" )
7980 window .resizable (resx ,resy )
8081 theme_select = Label (window , text = theme_title , font = ("Arial" ,12 ,"bold" ), anchor = "w" , justify = LEFT , bg = label_bg , fg = label_fg )
8182 theme_select .pack (fill = "x" , anchor = "w" )
@@ -105,7 +106,7 @@ def Settings():
105106 resizability_x_on_btn .place (x = 15 , y = 220 )
106107 resizability_x_off_btn = Button (window , text = off , bg = button_bg , fg = button_fg , activebackground = button_active_bg , activeforeground = button_active_fg , command = lambda : set_resizability ("x.off" ))
107108 resizability_x_off_btn .place (x = 50 , y = 220 )
108- resizability_x_window_name = Entry (window , width = 20 )
109+ resizability_x_window_name = Entry (window , width = 20 , bg = entry_bg , fg = entry_fg )
109110 resizability_x_window_name .place (x = 100 , y = 220 )
110111 resizability_y = Label (window , text = "Y:" , bg = label_bg , fg = label_fg )
111112 resizability_y .place (y = 270 )
@@ -115,7 +116,7 @@ def Settings():
115116 resizability_y_off_btn .place (x = 50 , y = 270 )
116117 resizability_y_status = Label (window , text = resizability_y_status_title , bg = label_bg , fg = label_fg )
117118 resizability_y_status .place (y = 295 )
118- resizability_y_window_name = Entry (window , width = 20 )
119+ resizability_y_window_name = Entry (window , width = 20 , bg = entry_bg , fg = entry_fg )
119120 resizability_y_window_name .place (x = 100 , y = 270 )
120121 if config ['Theme' ]['usertheme' ] == "dark" :
121122 theme_status .config (text = theme_status_title + " " + dark_theme_title .lower ())
@@ -127,5 +128,12 @@ def Settings():
127128 language_status .config (text = language_status_title + " " + language_tr_title .lower ())
128129 elif config ['Language' ]['userlang' ] == "en" :
129130 language_status .config (text = language_status_title + " " + language_en_title .lower ())
131+ light_theme_btn .place (x = 42 , y = 35 )
132+ amoled_theme_btn .place (x = 82 , y = 35 )
133+ english_lang_btn .place (x = 57 , y = 130 )
134+ resizability_x_off_btn .place (x = 45 , y = 220 )
135+ resizability_y_off_btn .place (x = 45 , y = 270 )
136+ resizability_x_window_name .place (x = 80 , y = 220 )
137+ resizability_y_window_name .place (x = 80 , y = 270 )
130138 window .bind ('<Control-w>' , close )
131139 window .mainloop ()
0 commit comments