Custom Query (2447 matches)
Results (283 - 285 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3431 | Fixed | Deluge 2.0.3 Connection Manager fix window height | ||
Description |
I have found it frustrating with deluge 2.0.3, every time I start the program and land on the connection manager screen I have to resize it to see any of the options on the screen. Please accept this patch. --- deluge/ui/gtk3/glade/connection_manager.ui.old 2020-09-13 11:19:17.182998261 -0400 +++ deluge/ui/gtk3/glade/connection_manager.ui 2020-09-13 11:19:32.010168753 -0400 @@ -30,7 +30,7 @@ <property name="modal">True</property> <property name="window_position">center-on-parent</property> <property name="default_width">300</property> - <property name="default_height">250</property> + <property name="default_height">400</property> <property name="destroy_with_parent">True</property> <property name="type_hint">dialog</property> <child> |
|||
#3432 | Fixed | Cannot create account, cannot send message on #help in irc | ||
Description |
Hello, I need some help with my Deluge. I'd like to use the forums or IRC as support. Unfortunately the register page for the forum asks a question that points to another question above it. There's no question above it. I cannot register. I tried the IRC, but I cannot send messages in #help. Not sure why? Any help? |
|||
#3435 | Fixed | Both bg and fg should be defined | ||
Description |
There is no promise that default bg is white and default fg is black. The fix is simple: --- deluge.css.orig 2020-10-24 01:53:42.263275855 +0300 +++ deluge.css 2020-10-24 01:47:25.640715735 +0300 @@ -6,6 +6,8 @@ border: 0 none; overflow: hidden; height: 100%; + color: black; + background: white; } |