Bug 144372 - Edit legend dialog doesn't activate 'apply' when some changes are made
Summary: Edit legend dialog doesn't activate 'apply' when some changes are made
Status: RESOLVED FIXED
Alias: None
Product: kst
Classification: Applications
Component: general (show other bugs)
Version: 1.x
Platform: Fedora RPMs Linux
: NOR normal
Target Milestone: ---
Assignee: kst
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-04-18 05:11 UTC by Matthew Truch
Modified: 2007-04-24 19:02 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Matthew Truch 2007-04-18 05:11:50 UTC
Version:           1.4.0 (using KDE KDE 3.5.5)
Installed from:    Fedora RPMs
OS:                Linux

Some changes made in the edit legend dialog don't cause the apply button to activate.  

Example:

1. Start kst, display multiple curves in one plot and show the legend.
2. open edit legend dialog (right click on legend, edit).
3. Click on a curve in the 'displayed curves' section and use the arrows to move their position

Note how apply doesn't activate.

It should, as you've made a change that is applyable.
Comment 1 Andrew Walker 2007-04-24 19:02:23 UTC
SVN commit 657638 by arwalker:

BUG:144372 Enable the Apply button when curve order in legend dialog is modified

 M  +2 -0      viewlegendwidget.ui.h  


--- branches/work/kst/1.5/kst/src/libkstapp/viewlegendwidget.ui.h #657637:657638
@@ -22,6 +22,8 @@
     connect(_add, SIGNAL(clicked()), this, SLOT(addDisplayedCurve()));
     connect(_up, SIGNAL(clicked()), DisplayedCurveList, SLOT(up()));
     connect(_down, SIGNAL(clicked()), DisplayedCurveList, SLOT(down()));
+    connect(_up, SIGNAL(clicked()), DisplayedCurveList, SIGNAL(changed()));
+    connect(_down, SIGNAL(clicked()), DisplayedCurveList, SIGNAL(changed()));
 
     _up->setPixmap(BarIcon("up"));
     _up->setEnabled(false);