| Summary: | Image export lacks note text | ||
|---|---|---|---|
| Product: | [Applications] umbrello | Reporter: | Mike Fox <mfox> |
| Component: | general | Assignee: | Umbrello Development Group <umbrello-devel> |
| Status: | RESOLVED NOT A BUG | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Mike Fox
2005-01-14 01:52:37 UTC
Fixed in cvs (removed embedded note editor.) BTW, unfortunately the tabbed diagram configuration is broken in 1.4-beta2 (fix will be commiteed to head later today.) Please disable tabbed diagrams when using the beta2 release. > Please disable tabbed diagrams when using the beta2 release.
Oops, sorry, I mean beta1. (beta2 isn't even out yet)
CVS commit by okellogg:
loadFromXMI(): Call changeCurrentView() also in the tabbed-diagram config.
CCBUG:96964
M +1 -1 umldoc.cpp 1.232
--- kdesdk/umbrello/umbrello/umldoc.cpp #1.231:1.232
@@ -2168,9 +2168,9 @@ bool UMLDoc::loadFromXMI( QIODevice & fi
viewToBeSet = findView( m_nViewID );
if (viewToBeSet) {
+ changeCurrentView( m_nViewID );
Settings::OptionState optionState = UMLApp::app()->getOptionState();
if (optionState.generalState.tabdiagrams) {
UMLApp::app()->tabWidget()->showPage(viewToBeSet);
} else {
- changeCurrentView( m_nViewID );
// Make sure we have a treeview item for each diagram.
// It may happen that we are missing them after switching off
|