[yast-commit] r41136 - /branches/tmp/sh/mod-ui/ncurses/src/NCAskForFile.cc
Author: gs Date: Thu Sep 27 14:38:01 2007 New Revision: 41136 URL: http://svn.opensuse.org/viewcvs/yast?rev=41136&view=rev Log: setStretchable(true) for ComboBox Modified: branches/tmp/sh/mod-ui/ncurses/src/NCAskForFile.cc Modified: branches/tmp/sh/mod-ui/ncurses/src/NCAskForFile.cc URL: http://svn.opensuse.org/viewcvs/yast/branches/tmp/sh/mod-ui/ncurses/src/NCAskForFile.cc?rev=41136&r1=41135&r2=41136&view=diff ============================================================================== --- branches/tmp/sh/mod-ui/ncurses/src/NCAskForFile.cc (original) +++ branches/tmp/sh/mod-ui/ncurses/src/NCAskForFile.cc Thu Sep 27 14:38:01 2007 @@ -163,7 +163,8 @@ // label for text field showing the selected dir dirName = new NCComboBox( frame, _( "Selected Directory:" ), false ); // editable = false; dirName->setNotify( true ); - + dirName->setStretchable( YD_HORIZ, true ); + YStringWidgetID * dirID = new YStringWidgetID( idDirName ); dirName->setId( dirID ); @@ -216,7 +217,7 @@ // label for text field showing the filter (e.g. *.bak) NCComboBox * extension = new NCComboBox( hSplit2, _( "Filter:" ), edit ); // editable as set in edit - + extension->addItem( filter, true ); // selected -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
gs@svn.opensuse.org