diff --git a/indra/newview/llpreviewnotecard.cpp b/indra/newview/llpreviewnotecard.cpp
index f3fef23d374997b207c11bbe73347615f28899d1..a82d4292e98523fa4f1d63b0252c1f383560b920 100644
--- a/indra/newview/llpreviewnotecard.cpp
+++ b/indra/newview/llpreviewnotecard.cpp
@@ -85,11 +85,36 @@ LLPreviewNotecard::LLPreviewNotecard(const LLSD& key) //const LLUUID& item_id,
 LLPreviewNotecard::~LLPreviewNotecard()
 {
 	delete mLiveFile;
+	mFontNameConnection.disconnect();
+	mFontSizeConnection.disconnect();
 }
 
 BOOL LLPreviewNotecard::postBuild()
 {
 	mEditor = getChild<LLViewerTextEditor>("Notecard Editor");
+	if (auto fontp = LLFontGL::getFont(LLFontDescriptor(gSavedSettings.getString("NotecardFontName"), gSavedSettings.getString("NotecardFontSize"), 0).normalize()))
+	{
+		mEditor->setFont(fontp);
+	}
+	mFontNameConnection = gSavedSettings.getControl("NotecardFontName")->getCommitSignal()->connect([this](LLControlVariable*, const LLSD& newval, const LLSD&) 
+		{ 
+			std::string text = mEditor->getText();
+			if (auto fontp = LLFontGL::getFont(LLFontDescriptor(newval.asString(), gSavedSettings.getString("NotecardFontSize"), 0).normalize()))
+			{
+				mEditor->setFont(fontp);
+			}
+			mEditor->setText(text);
+		});
+	mFontSizeConnection = gSavedSettings.getControl("NotecardFontSize")->getCommitSignal()->connect([this](LLControlVariable*, const LLSD& newval, const LLSD&) 
+		{
+			std::string text = mEditor->getText();
+			if (auto fontp = LLFontGL::getFont(LLFontDescriptor(gSavedSettings.getString("NotecardFontName"), newval.asString(), 0).normalize()))
+			{
+				mEditor->setFont(fontp);
+			}
+			mEditor->setText(text);
+		});
+
 	mEditor->setNotecardInfo(mItemUUID, mObjectID, getKey());
 	mEditor->makePristine();
 
diff --git a/indra/newview/llpreviewnotecard.h b/indra/newview/llpreviewnotecard.h
index be106f169e8397ec8d0e5b70e4d6d77e8d5b0abe..f8e60d568327f1b49270be2114cd3d0a641f4925 100644
--- a/indra/newview/llpreviewnotecard.h
+++ b/indra/newview/llpreviewnotecard.h
@@ -140,6 +140,9 @@ class LLPreviewNotecard final : public LLPreview, public LLVOInventoryListener
 	LLUUID mObjectID;
 
 	LLLiveLSLFile* mLiveFile;
+
+	boost::signals2::connection mFontNameConnection;
+	boost::signals2::connection mFontSizeConnection;
 };