------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=127905 Summary: wish: make comment field resizable Product: digikam Version: 0.9.0-svn Platform: unspecified OS/Version: Linux Status: UNCONFIRMED Severity: normal Priority: NOR Component: general AssignedTo: digikam-devel kde org ReportedBy: jens-bugs.kde.org spamfreemail de Version: 0.9.0-svn (using KDE 3.5.2 Level "a" , SUSE 10.0 UNSUPPORTED) Compiler: Target: i586-suse-linux OS: Linux (i686) release 2.6.13-15.8-default Hello, I would like to be able to change the size (height) of the comment field in the right side bar under "Comments & Tags". I have a lot of tags which I use constantly but use almost no "free text" comments. What I mean is that the "Comments & Tags" is horizontally divided with the same mechanism as the digikam main window is divided vertically (where you can change the width of the three areas with the mouse). Thanks! Jens _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=127905 ------- Additional Comments From jens-bugs.kde.org spamfreemail de 2006-05-23 22:12 ------- Created an attachment (id=16247) --> (http://bugs.kde.org/attachment.cgi?id=16247&action=view) screenshot with proposal sketched in _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Jens B. Benecke
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=127905 ------- Additional Comments From caulier.gilles free fr 2006-05-23 22:42 ------- SVN commit 544172 by cgilles: digikam from trunk : Comments & tags sidebar tab : fix stretch layout CCBUGS: 127905 CCMAIL: digikam-devel kde org M +7 -6 imagedescedittab.cpp --- trunk/extragear/graphics/digikam/libs/imageproperties/imagedescedittab.cpp #544171:544172 @ -152,7 +152,7 @ QVBoxLayout *vLayout = new QVBoxLayout(this); d->navigateBar = new NavigateBarWidget(this, navBar); QWidget *settingsArea = new QWidget(this); - QGridLayout *settingsLayout = new QGridLayout(settingsArea, 4, 2, KDialog::marginHint(), KDialog::spacingHint()); + QGridLayout *settingsLayout = new QGridLayout(settingsArea, 3, 1, KDialog::marginHint(), KDialog::spacingHint()); // Comments view --------------------------------------------------- @ -160,20 +160,17 @ d->commentsEdit = new KTextEdit(commentsBox); d->commentsEdit->setTextFormat(QTextEdit::PlainText); d->commentsEdit->setCheckSpellingEnabled(true); - settingsLayout->addMultiCellWidget(commentsBox, 1, 1, 0, 2); // Date and Time view --------------------------------------------------- QHGroupBox* dateTimeBox = new QHGroupBox(i18n("Date && Time"), settingsArea); d->dateTimeEdit = new KDateTimeEdit( dateTimeBox, "datepicker"); - settingsLayout->addMultiCellWidget(dateTimeBox, 2, 2, 0, 2); // Rating view -------------------------------------------------- QHGroupBox* ratingBox = new QHGroupBox(i18n("Rating"), settingsArea); ratingBox->layout()->setAlignment(Qt::AlignCenter); d->ratingWidget = new RatingWidget(ratingBox); - settingsLayout->addMultiCellWidget(ratingBox, 3, 3, 0, 2); // Tags view --------------------------------------------------- @ -199,8 +196,6 @ d->recentTagsBtn = new QPushButton(i18n("Recent Tags"), tagsBox); tagsBoxLayout->addWidget(d->recentTagsBtn); - settingsLayout->addMultiCellWidget(tagsBox, 4, 4, 0, 2); - d->tagsView->addColumn(i18n( "Tags" )); d->tagsView->header()->hide(); d->tagsView->setSelectionMode(QListView::Single); @ -208,6 +203,12 @ // -------------------------------------------------- + settingsLayout->addMultiCellWidget(commentsBox, 0, 0, 0, 1); + settingsLayout->addMultiCellWidget(dateTimeBox, 1, 1, 0, 1); + settingsLayout->addMultiCellWidget(ratingBox, 2, 2, 0, 1); + settingsLayout->addMultiCellWidget(tagsBox, 3, 3, 0, 1); + settingsLayout->setRowStretch(3, 10); + vLayout->addWidget(d->navigateBar); vLayout->addWidget(settingsArea); _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
In reply to this post by Jens B. Benecke
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee. http://bugs.kde.org/show_bug.cgi?id=127905 jens-bugs.kde.org spamfreemail de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|UNCONFIRMED |RESOLVED Resolution| |WORKSFORME ------- Additional Comments From jens-bugs.kde.org spamfreemail de 2006-05-24 00:27 ------- This solution is OK for me. Thanks for the quick fix ;) _______________________________________________ Digikam-devel mailing list [hidden email] https://mail.kde.org/mailman/listinfo/digikam-devel |
Free forum by Nabble | Edit this page |