| Summary: | Up/Down arrows in Plot Content skip too many | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | D. V. Wiebe <dvw> |
| Component: | general | Assignee: | kst |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Proposed patch | ||
|
Description
D. V. Wiebe
2007-04-11 00:06:53 UTC
Created attachment 20235 [details]
Proposed patch
Patch removes duplicate connections.
Interesting. These duplicate connections date back to when the file was created. Looks like they should go. SVN commit 653138 by arwalker:
BUG:144050 Remove duplicate connections so dialog functions correctly
M +0 -11 view2dplotwidget.ui.h
--- branches/work/kst/1.5/kst/src/libkstapp/view2dplotwidget.ui.h #653137:653138
@@ -30,17 +30,6 @@
_plot = 0L;
- connect(DisplayedCurveList, SIGNAL(clicked(QListBoxItem*)), this, SLOT(updateButtons()));
- connect(AvailableCurveList, SIGNAL(clicked(QListBoxItem*)), this, SLOT(updateButtons()));
- connect(DisplayedCurveList, SIGNAL(doubleClicked(QListBoxItem*)), this, SLOT(removeDisplayedCurve()));
- connect(AvailableCurveList, SIGNAL(doubleClicked(QListBoxItem*)), this, SLOT(addDisplayedCurve()));
- connect(DisplayedCurveList, SIGNAL(selectionChanged()), this, SLOT(updateButtons()));
- connect(AvailableCurveList, SIGNAL(selectionChanged()), this, SLOT(updateButtons()));
- connect(_remove, SIGNAL(clicked()), this, SLOT(removeDisplayedCurve()));
- connect(_add, SIGNAL(clicked()), this, SLOT(addDisplayedCurve()));
- connect(_up, SIGNAL(clicked()), DisplayedCurveList, SLOT(up()));
- connect(_down, SIGNAL(clicked()), DisplayedCurveList, SLOT(down()));
-
_up->setPixmap(BarIcon("up"));
_up->setEnabled(false);
_up->setAccel(ALT+Key_Up);
|