View Issue Details

IDProjectCategoryView StatusLast Update
0005163ScribusGeneralpublic2007-01-17 21:02
Reportercbradney Assigned Tosubik  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Fixed in Version1.3.4cvs 
Summary0005163: Copying a page duplicates autoguides to standard guides
Descriptionvoid GuideManagerCore::copy(GuideManagerCore *target, GuideType type)
{
    switch (type)
    {
        case Standard:
            target->addHorizontals(horizontalStdG, Standard);
            target->addVerticals(verticalStdG, Standard);
            break;
        case Auto:
            target->setHorizontalAutoCount(m_horizontalAutoCount);
            target->setVerticalAutoCount(m_verticalAutoCount);
            target->setHorizontalAutoGap(m_horizontalAutoGap);
            target->setVerticalAutoGap(m_verticalAutoGap);
            target->setHorizontalAutoRefer(m_horizontalAutoRefer);
            target->setVerticalAutoRefer(m_verticalAutoRefer);
            target->addHorizontals(horizontalStdG, Auto);
            target->addVerticals(verticalStdG, Auto);
            target->gx = gx;
            target->gy = gy;
            target->gw = gw;
            target->gh = gh;
            break;
    }
}

the auto section copies the std guides
TagsNo tags attached.
Patch

Relationships

child of 0003964 closedplinnell 1.3.4 Release Metabug 

Activities

cbradney

2007-01-14 22:05

administrator   ~0014801

target->addHorizontals(horizontalAutoG, Auto);
target->addVerticals(verticalAutoG, Auto);

would be better for line 350 and 351?

Issue History

Date Modified Username Field Change
2007-01-14 21:54 cbradney New Issue
2007-01-14 22:05 cbradney Status new => assigned
2007-01-14 22:05 cbradney Assigned To => subik
2007-01-14 22:05 cbradney Note Added: 0014801
2007-01-14 23:48 cbradney Relationship added child of 0003964
2007-01-16 19:12 subik Status assigned => resolved
2007-01-16 19:12 subik Fixed in Version => 1.3.4cvs
2007-01-16 19:12 subik Resolution open => fixed
2007-01-17 21:02 cbradney Status resolved => closed