summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSlagvi Public <JandotDarowskiattgmaildottcom>2013-06-22 13:47:42 +0000
committerSlagvi Public <JandotDarowskiattgmaildottcom>2013-06-22 13:47:42 +0000
commitb1f718bfec1daa260ea6417c85c5502954ad1e5e (patch)
treea43649eb5f6ad068452803bdb56c2616c09fc8ab /src
parentCoding style fixes (diff)
downloadinkscape-b1f718bfec1daa260ea6417c85c5502954ad1e5e.tar.gz
inkscape-b1f718bfec1daa260ea6417c85c5502954ad1e5e.zip
Changed comboBox into editable
(bzr r12379.2.3)
Diffstat (limited to 'src')
-rw-r--r--src/templates/template-load-tab.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/templates/template-load-tab.cpp b/src/templates/template-load-tab.cpp
index d5fcd18ca..febbb3be6 100644
--- a/src/templates/template-load-tab.cpp
+++ b/src/templates/template-load-tab.cpp
@@ -7,7 +7,8 @@ namespace Inkscape {
namespace UI {
-TemplateLoadTab::TemplateLoadTab()
+TemplateLoadTab::TemplateLoadTab() :
+ _keywordsCombo(true)
{
set_border_width(10);
@@ -66,7 +67,6 @@ void TemplateLoadTab::_displayTemplateInfo()
void TemplateLoadTab::_initKeywordsList()
{
_keywordsCombo.append_text("All");
- _keywordsCombo.set_active_text("All");
for (int i = 0 ; i < 10 ; ++i) {
_keywordsCombo.append_text( "Keyword" + Glib::ustring::format(i));