mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-08 18:19:42 +00:00
Fix packing options in GtkLengthEntry
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10810 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c0d288c88b
commit
6c69baf809
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
* GPreferences.[Ch], glade/preferences.glade: Start work on
|
* GPreferences.[Ch], glade/preferences.glade: Start work on
|
||||||
preferences dialog ("Screen fonts" tab done).
|
preferences dialog ("Screen fonts" tab done).
|
||||||
|
* GtkLengthEntry.C: fix packing, oversized units box
|
||||||
|
|
||||||
2006-01-28 John Spray <spray@lyx.org>
|
2006-01-28 John Spray <spray@lyx.org>
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ GtkLengthEntry::GtkLengthEntry(
|
|||||||
|
|
||||||
set_spacing(6);
|
set_spacing(6);
|
||||||
pack_start (spin_, true, true, 0);
|
pack_start (spin_, true, true, 0);
|
||||||
pack_start (combo_, true, true, 0);
|
pack_start (combo_, false, false, 0);
|
||||||
show_all();
|
show_all();
|
||||||
spin_.signal_changed().connect(sigc::mem_fun(changedsignal_, &sigc::signal<void>::emit));
|
spin_.signal_changed().connect(sigc::mem_fun(changedsignal_, &sigc::signal<void>::emit));
|
||||||
combo_.signal_changed().connect(sigc::mem_fun(changedsignal_, &sigc::signal<void>::emit));
|
combo_.signal_changed().connect(sigc::mem_fun(changedsignal_, &sigc::signal<void>::emit));
|
||||||
|
Loading…
Reference in New Issue
Block a user