Skip to content

Commit 6f81427

Browse files
authored
Remove preview labels (o3de#17688)
* Remove (PREVIEW) labels from different tools Signed-off-by: Luis Sempé <[email protected]>
1 parent 629bdba commit 6f81427

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

Code/Editor/LyViewPaneNames.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ namespace LyViewPane
4141
static const char* const SubstanceEditor = "Substance Editor";
4242
static const char* const LandscapeCanvas = "Landscape Canvas";
4343
static const char* const AnimationEditor = "EMotion FX Animation Editor";
44-
static const char* const PhysXConfigurationEditor = "PhysX Configuration (PREVIEW)";
44+
static const char* const PhysXConfigurationEditor = "PhysX Configuration";
4545

46-
static const char* const SliceRelationships = "Slice Relationship View (PREVIEW)";
46+
static const char* const SliceRelationships = "Slice Relationship View";
4747

4848
const int NO_BUILTIN_ACTION = -1;
4949
}

Code/Editor/Plugins/EditorAssetImporter/AssetImporterWindow.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</size>
1818
</property>
1919
<property name="windowTitle">
20-
<string>Scene Settings (PREVIEW)</string>
20+
<string>Scene Settings</string>
2121
</property>
2222
<widget class="QWidget" name="m_rootWidget">
2323
<property name="sizePolicy">

Code/Editor/TrackView/TrackViewPythonFuncs.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ namespace AzToolsFramework
684684
};
685685
addLegacyTrackview(behaviorContext->Method("set_recording", PyTrackViewSetRecording, nullptr, "Activates/deactivates TrackView recording mode."));
686686

687-
addLegacyTrackview(behaviorContext->Method("new_sequence", PyTrackViewNewSequence, nullptr, "Creates a new sequence of the given type (0=Object Entity Sequence (Legacy), 1=Component Entity Sequence (PREVIEW)) with the given name."));
687+
addLegacyTrackview(behaviorContext->Method("new_sequence", PyTrackViewNewSequence, nullptr, "Creates a new sequence of the given type (0=Object Entity Sequence (Legacy), 1=Component Entity Sequence) with the given name."));
688688
addLegacyTrackview(behaviorContext->Method("delete_sequence", PyTrackViewDeleteSequence, nullptr, "Deletes the specified sequence."));
689689
addLegacyTrackview(behaviorContext->Method("set_current_sequence", PyTrackViewSetCurrentSequence, nullptr, "Sets the specified sequence as a current one in TrackView."));
690690
addLegacyTrackview(behaviorContext->Method("get_num_sequences", PyTrackViewGetNumSequences, nullptr, "Gets the number of sequences."));

Gems/Atom/Tools/MaterialCanvas/Code/Source/MaterialCanvasApplication.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ namespace MaterialCanvas
5555
InitMaterialCanvasResources();
5656

5757
QApplication::setOrganizationName("O3DE");
58-
QApplication::setApplicationName("O3DE Material Canvas (Preview)");
58+
QApplication::setApplicationName("O3DE Material Canvas");
5959
QApplication::setWindowIcon(QIcon(":/Icons/application.svg"));
6060

6161
AzToolsFramework::EditorWindowRequestBus::Handler::BusConnect();

Gems/Atom/Tools/PassCanvas/Code/Source/PassCanvasApplication.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ namespace PassCanvas
5252
InitPassCanvasResources();
5353

5454
QApplication::setOrganizationName("O3DE");
55-
QApplication::setApplicationName("O3DE Pass Canvas (Preview)");
55+
QApplication::setApplicationName("O3DE Pass Canvas");
5656
QApplication::setWindowIcon(QIcon(":/Icons/application.svg"));
5757

5858
AzToolsFramework::EditorWindowRequestBus::Handler::BusConnect();

Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/EditorMaterialSystemComponent.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ namespace AZ
183183
arguments.append(QString("--project-path=%1").arg(projectPath.c_str()));
184184
}
185185

186-
AZ_TracePrintf("MaterialComponent", "Launching Material Canvas (Preview)");
186+
AZ_TracePrintf("MaterialComponent", "Launching Material Canvas");
187187
AtomToolsFramework::LaunchTool("MaterialCanvas", arguments);
188188
}
189189

@@ -424,7 +424,7 @@ namespace AZ
424424

425425
{
426426
AzToolsFramework::ActionProperties actionProperties;
427-
actionProperties.m_name = "Material Canvas (Preview)";
427+
actionProperties.m_name = "Material Canvas";
428428
actionProperties.m_iconPath = ":/Menu/material_canvas.svg";
429429

430430
auto outcome = actionManagerInterface->RegisterAction(

Gems/AtomLyIntegration/CommonFeatures/Code/Source/Material/MaterialBrowserInteractions.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ namespace AZ
5757
path.ends_with(AZ::Render::EditorMaterialComponentUtil::MaterialGraphTemplateExtensionWithDot) ||
5858
path.ends_with(AZ::Render::EditorMaterialComponentUtil::ShaderExtensionWithDot))
5959
{
60-
openers.push_back({ "Material_Canvas", "Open in Material Canvas (Preview)...", QIcon(":/Menu/material_canvas.svg"),
60+
openers.push_back({ "Material_Canvas", "Open in Material Canvas...", QIcon(":/Menu/material_canvas.svg"),
6161
[&](const char* fullSourceFileNameInCallback, [[maybe_unused]] const AZ::Uuid& sourceUUID)
6262
{
6363
EditorMaterialSystemComponentRequestBus::Broadcast(

Gems/EMotionFX/Code/EMotionFX/Pipeline/SceneAPIExt/Rules/RootMotionExtractionRule.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ namespace EMotionFX::Pipeline::Rule
4343
AZ::EditContext* editContext = serializeContext->GetEditContext();
4444
if (editContext)
4545
{
46-
editContext->Class<RootMotionExtractionRule>("Root motion extraction (preview)", "Extract motion from the sample joint.")
46+
editContext->Class<RootMotionExtractionRule>("Root motion extraction", "Extract motion from the sample joint.")
4747
->ClassElement(AZ::Edit::ClassElements::EditorData, "")
4848
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
4949
->Attribute(AZ::Edit::Attributes::NameLabelOverride, "")

Gems/ScriptCanvas/Code/Editor/View/Windows/mainwindow.ui

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<bool>true</bool>
3030
</property>
3131
<property name="windowTitle">
32-
<string>Script Canvas (PREVIEW)</string>
32+
<string>Script Canvas</string>
3333
</property>
3434
<property name="toolButtonStyle">
3535
<enum>Qt::ToolButtonIconOnly</enum>

0 commit comments

Comments
 (0)