Partially solving issue 1788: "Crashing during processing of queue"
It also correct a bug of wrong image orientation (was wrong in the File Browser while good in the Editor tab) This patch also introduce several speed optimizations like: - switch between File Browser and Editor tab in Single Editor mode - asynchronous computation of the Batch Queue's thumbnails - quick start of RT even with a huge queue - less GUI overhead when applying a profile to multiple thumbs in the File Browser
This commit is contained in:
@@ -85,7 +85,7 @@ void LWButtonSet::arrangeButtons (int x, int y, int w, int h) {
|
||||
|
||||
void LWButtonSet::move (int nx, int ny) {
|
||||
|
||||
for (size_t i=0; i<buttons.size(); i++) {
|
||||
for (size_t i=0; i<buttons.size(); i++) {
|
||||
int x, y;
|
||||
buttons[i]->getPosition (x, y);
|
||||
buttons[i]->setPosition (x+nx-ax, y+ny-ay);
|
||||
@@ -97,7 +97,7 @@ void LWButtonSet::move (int nx, int ny) {
|
||||
|
||||
void LWButtonSet::redraw (Cairo::RefPtr<Cairo::Context> context) {
|
||||
|
||||
for (size_t i=0; i<buttons.size(); i++)
|
||||
for (size_t i=0; i<buttons.size(); i++)
|
||||
buttons[i]->redraw (context);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user