Libreoffice Writer lets the computer crash when editing the file properties - crash

In LibreOffice Writer (6.4.3.2 x64, Windows 10.0) I try to edit the file properties, particularly the custom properties. Trying anything (adding an attribute, deleting one, editing one) lets the computer crash with a blue screen. That happens when I click the save button in the File Properties dialog.
Details:
error reason is igdkmd64.sys, stop code is PAGE_FAULT_IN_NONE_PAGED_AREA
I tried it with and without Java RE, both crashed.
Does anybody know what is wrong?
Edit 2020-05-08:
In Tools --> Options --> LibreOffice --> View --> GraphicsOutput the checkbox "Use OpenGL for all rendering" was checked. No more crashes if I uncheck it

I had this same..
Use OpenGL for all rendering works.

Related

Can I customize the "New File" menu in PhpStorm?

I would like to add some other options, like "PHP Enum" or "PHP Interface" directly to this menu. Also, I would like to put PHP-related options first. It is possible tu customize this in PhpStorm? I'm using last version (2022.3.2) with the new UI enabled.
I tried using Appearance & Behaviour -> Menus & Toolbars but that didn't work for me.
Do you know that you can use the universal PHP Class entry and just change the type of the object (and therefore the file template) there? That can be done right away when typing the file or class name -- just use Arrow Up / Down keys:
(GREEN rectangle area is where that Up / Down key will work; RED rectangle shows my custom file templates)
P.S. The template for PHP Enums is also there, it just the screenshot was taken in a project with PHP 8.0 language level (need 8.1 for enums to appear).
P.P.S. The IDE will remember the last used template when you invoke this dialog again.
https://www.jetbrains.com/help/phpstorm/creating-php-classes.html
You can add new entries to this menu by creating custom File Templates at Settings/Preferences | Editor | File and Code Templates
https://www.jetbrains.com/help/phpstorm/settings-file-and-code-templates.html
Here are my test custom file templates:
And this is how they appear in that menu:
Customizing this menu (removing items, changing their order)
This is not possible at the moment. https://youtrack.jetbrains.com/issue/IDEA-143090 -- watch this ticket (star/vote/comment) to get notified with any progress.

xcode 8.1 xib editing hang, text editor workaround?

So, since updating, the gui randomly hangs editing a xib file. The scenario goes like this:
click an object - i.e, array controller
expand a parameter, Filter Predicate here
Select target object in pull down
try to enter model key path - HANG
In different xib files, the hang comes when trying to enter the model key path textfield. I've also seen errors citing bogus fields like 'Hidden3' for some attribute bindings - only workaround was to remove them.
Has anyone ventured to editing the xml directly, but I guess I can do that in code :-(
Well, I know this is an old question, but I found an answer.
My situation was similar to the one described above: Xcode hanging whenever I edited the key path of any binding in Xcode 8.1. Nothing described here or elsewhere worked.
However, what did work was to edit the storyboard outside of the actual Xcode project: open the offending StoryBoard by itself, do not access it through the project.
This appears consistent with a Sample/Spindump through the Activity Monitor when Xcode hung that showed functions that appeared related to auto-completion/edition. Unchecking auto-completion did not work though (in Prefs).

Change font of output console in Visual Studio?

I'm a beginner programmer using visual basic on visual studio working mostly with Consoles, and I would like to change the font size of the text that the compiler outputs displays when the code is compiled (not the text when I'm coding, those are fine). Here's what it looks like, compare it to the exit, minimise buttons and the file directory on the title bar for size references
Right now, the font size is like 8pt which is annoying.
Open the options window and go to the Fonts and Colors item. Select the window you'd like to change and then change the font-size to your liking:
You'll likely need to change multiple items, since each window uses its own settings:
Output Window
Command Window
Immediate Window
And possibly others.
To change the font size of the console that launches when you debug an application, you need to change the default font size for the windows console.
Start a command-prompt and then open the options screen
Set the font size:
This will apply to all consoles that open in the future.
None of the solutions suggested by jessehouwing worked for me (using Visual Studio 2017).
What did work was running a console program to open the console, clicking the small icon on the left in the title bar of the console window, clicking properties, fonts, and chosing the preferred font size.
After running and seeing the console windows,
In VSC 2019 go to File -> Preferences -> Settings -> Features -> Terminal and find option of font-size and change to apropriate value for your needs.Question isnt really clear what you exactly need but for all settings of font-size-s is pretty the same path to the solution.

Highlight file opens up file in a preview window functionality instead of double click

Coming from a Visual Studio environment and Xcode environment, if you highlight a file on the project window (LHS), the file opens. IntelliJ doesn't open a file until you double click it.
It's kind of a different feel since it opens it up in a new tab each time vs just using the last active window or a preview window to flip between files. Is there a way to make it more like VS or Xcode that where highlighting the file actually opens the file in the current window?
There is Autoscroll to Source option in the project view settings. Unfortunately it doesn't open the focused files in the current tab, but in new tabs.
I haven't found an option to change this behavior anywhere, but there is already a feature request on IntelliJ's YouTrack asking for this, so feel free to vote for it :)

IntelliJ IDEA - detach editor window

I have recently removed tabs from my IntelliJ setup, because with all the features available to navigate between files, who needs them?
The issue is, the normal way of detaching an editor window would be to drag the tab onto another screen (or area). There doesn't appear to be anything in the key mappings for detaching an editor window. Is there a way of doing this via the keyboard?
The keyboard shortcut your are looking for is SHIFT+F4 (the action assigned to this shortcut is called Open Source in New Window. When you invoke this action the currently opened tab (file) will be opened in new editor window. However the file will remain opened in the main window too, but I believe that this is as close as you can get to the functionality you describe, at least for now.
Option 2
Open the "Open class" dialog using CTRL+N search for a class you want to open in detached window and hit CTRL+SHIFT+ENTER. That will open the class in a new editor window.
Unfortunately this seems to work only for Java classes and not for other files (CTRL+SHIFT+N dialog). I created a bug report for the last problem, so if you think it might be useful, feel free to vote for it.