mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-21 23:09:40 +00:00
Fix rows and columns getting confused in table creation dialog
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13249 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
b7039ba891
commit
01b554be2a
@ -3,6 +3,7 @@
|
||||
in the list of bibkeys.
|
||||
* GViewBase.C: Put update() back into show(), it was still
|
||||
needed by some dialogs. More investigation needed.
|
||||
* GTableCreate.C: Fix rows and columns being switched
|
||||
|
||||
2006-02-14 John Spray <spray@lyx.org>
|
||||
* GPainter.[Ch], xftFontMetrics.C: Remove broken multibyte
|
||||
|
@ -58,7 +58,7 @@ void GTableCreate::apply()
|
||||
{
|
||||
size_t const rows = rows_->get_value_as_int();
|
||||
size_t const columns = columns_->get_value_as_int();
|
||||
controller().params() = std::make_pair(columns, rows);
|
||||
controller().params() = std::make_pair(rows, columns);
|
||||
}
|
||||
|
||||
} // namespace frontend
|
||||
|
Loading…
x
Reference in New Issue
Block a user