-
Notifications
You must be signed in to change notification settings - Fork 120
Independently sized thumbnails #77
base: develop
Are you sure you want to change the base?
Independently sized thumbnails #77
Conversation
Cool A couple of notes, if you don't mind
No need to change anything in the pull request, I'll fix them during the code review Thanks again This opens the road to 3.0.0 release with the major 'not only EVE client previews' feature |
Is there a way to change Visual studio to use tabs? I had no idea it was doing that. |
The setting is under Tools -> Options -> Text Editor -> C# -> Tabs |
Do you think I should take out the default thumbnail size option and ui? Seems like its not really needed. |
What really would be better is to keep the UI + add a checkbox like 'Sync size' (need better text here) or something So one can resize come thumbnails as he want and still can manage size of all thumbnails at once If you'll work on this then please confirm otherwise I'll try to implement this over the weekend |
I'll see what I can do. Right now I'm saving all thumbnail sizes, so I need to change that. I think it will work better this way anyways. |
So the way I'm doing it I either need to make RefreshThumbnails public or iterate through thumbnails and change the size of any that aren't custom sized. I'm thinking the first is easier, will it cause any issues with the rest of the app? EDIT: I can just use Activate. |
|
I have what you said earlier implemented, but I want to create a way for someone to have most of their thumbnails synced to the default size with one or two resized. The only way I can think of atm would be a checked list but that feels like unnecessary clutter, so I'm going to think on it. |
I'm trying to make the thumbnails non-resizeable when sync sizes is checked, but no mater what I do I can't get it to work. I'm setting BorderStyle to FixedToolWindow, is there something else I need to change? EDIT: made it work. |
For some reason FixedToolWindow appears to have a smaller top border than SizeableToolWindow, I'm not sure why or how to fix it. A related problem: Because of this size change, when sync is unchecked, a resize event is called because the size of the top bar changes, and since sync is off it updates the size of the thumbnail to that (incorrect) size. I think this is what causes it, not 100% sure. EDIT: The problem is with the frame, because it works fine with disabled frames. Highlighting works fine though, so idk. EDIT 2: Fixed. |
@Ligraph: Can this feature be considered as 'Completed'? |
Yeah. |
Made it so that thumbnails can be resized independently. Sizes save and load, and work with per client layouts.
I had to add packages to the gitignore so the dependent packages wouldn't get uploaded, not sure if that will break anything (I'm using VS).