Version 257 subscription hotfix

w
e
w

l
a
d
This commit is contained in:
Hydrus Network Developer 2017-05-24 16:00:57 -05:00
parent e4e7269d32
commit 92ea57e5a5
4 changed files with 10 additions and 7 deletions

View File

@ -10,7 +10,7 @@
<ul>
<li><h3>version 257</h3></li>
<ul>
<li>?the duplicate filter will now maintain zoom on files with the same ratio</li>
<li>the duplicate filter will now maintain zoom on files with the same ratio</li>
<li>split the duplicate merge options into separate tag/rating controls--you may see some duplicate service entries, but these will be cleaned on your next shutdown</li>
<li>duplicate merge options now allow syncing 'archive' status</li>
<li>duplicate merge options now allow 'delete both files', which you may find use for in custom actions</li>

View File

@ -2223,12 +2223,15 @@ class PopupMessageManager( wx.Frame ):
my_x = ( parent_width - my_width ) - 25
my_y = ( parent_height - my_height ) - 5
my_position = parent.ClientToScreenXY( my_x, my_y )
if my_position != self.GetPosition():
if parent.IsShown():
self.SetPosition( parent.ClientToScreenXY( my_x, my_y ) )
my_position = parent.ClientToScreenXY( my_x, my_y )
if my_position != self.GetPosition():
self.SetPosition( parent.ClientToScreenXY( my_x, my_y ) )
# Unhiding tends to raise the main gui tlp, which is annoying if a media viewer window has focus

View File

@ -2891,7 +2891,7 @@ class ManageOptionsPanel( ClientGUIScrolledPanels.ManagePanel ):
self._estimated_number_thumbnails = wx.StaticText( media_panel, label = '' )
self._fullscreen_cache_size = wx.SpinCtrl( media_panel, min = 25, max = 3000 )
self._fullscreen_cache_size = wx.SpinCtrl( media_panel, min = 25, max = 8192 )
self._fullscreen_cache_size.Bind( wx.EVT_SPINCTRL, self.EventFullscreensUpdate )
self._estimated_number_fullscreens = wx.StaticText( media_panel, label = '' )

View File

@ -2588,7 +2588,7 @@ class Subscription( HydrusSerialisable.SerialisableBaseNamed ):
new_urls = [ url for url in urls_to_add_ordered if not self._seed_cache.HasSeed( url ) ]
self._seed_cache.AddSeeds( url )
self._seed_cache.AddSeeds( new_urls )